import { Range } from "./ranges";
export interface MatchIndexes {
    byRef: Map<number, Array<{
        estId: string;
        estIdx: number;
    }>>;
    byEst: Map<string, Map<number, number>>;
}
export declare function buildMatchIndex(refFile: any, estFiles: any[], tolerances: any): MatchIndexes;
export declare function buildUnionRangesByRef(byRef: MatchIndexes["byRef"], refFile: any, estFiles: any[]): Map<number, Range[]>;
//# sourceMappingURL=match-index.d.ts.map