export declare class FuzzyMatcher { readonly pattern: string; chars: number[]; folded: number[]; astral: boolean; any: number[]; precise: number[]; byWord: number[]; constructor(pattern: string); match(word: string): number[] | null; result(score: number, positions: number[], word: string): number[]; } //# sourceMappingURL=filter.d.ts.map