import type { ColorBy, PreBaseCoverageBin } from '../shared/types';
import type { Feature } from '@jbrowse/core/util';
import type { AugmentedRegion as Region } from '@jbrowse/core/util/types';
export declare function processModifications({ feature, colorBy, region, bins, regionSequence, }: {
    bins: PreBaseCoverageBin[];
    feature: Feature;
    region: Region;
    colorBy?: ColorBy;
    regionSequence: string;
}): void;
