import type { Feature } from '@jbrowse/core/util';
export declare function getModProbabilities(feature: Feature): number[] | undefined;
export declare function getModPositions(mm: string, fseq: string, fstrand: number): {
    type: string;
    positions: number[];
    base: string;
    strand: string;
}[];
export declare function getModTypes(mm: string): {
    type: string;
    base: string;
    strand: string;
}[];
export declare function getMethBins(feature: Feature, cigarOps: string[]): {
    methBins: number[];
    hydroxyMethBins: number[];
    methProbs: number[];
    hydroxyMethProbs: number[];
};
