export declare class BM25 { private documents; private k1; private b; private avgDocLength; private docFreq; private docLengths; private idf; constructor(documents: string[][], k1?: number, b?: number); private computeIdf; private score; search(query: string[]): string[][]; }