export default SearchField;
declare class SearchField {
    constructor(chromInfo: any);
    chromInfo: any;
    chromInfoBisector: (array: ArrayLike<any>, x: any, lo?: number, hi?: number) => number;
    scalesToPositionText(xScale: any, yScale: any, twoD?: boolean): string;
    convertNumberNotation(numStr: any): any;
    parsePosition(positionText: any, prevChr?: null): any[];
    matchRangesToLarger(range1: any, range2: any): any[];
    getSearchRange(term: any): any[] | null;
    parseOffset(offsetText: any): number[][];
    searchPosition(text: any): any[];
}
