export declare class Trie {
    private root;
    constructor();
    insert(word: string, data: any): void;
    search(word: string): any[];
    private collectWords;
    fuzzySearch(word: string, maxDistance?: number): any[];
    private fuzzySearchRecursive;
}
