import type { PreBaseCoverageBin, SkipMap } from '../shared/types';
import type { Feature } from '@jbrowse/core/util';
import type { AugmentedRegion } from '@jbrowse/core/util/types';
export declare function processMismatches({ feature, region, bins, skipmap, }: {
    region: AugmentedRegion;
    bins: PreBaseCoverageBin[];
    feature: Feature;
    skipmap: SkipMap;
}): void;
