export declare class TrieWithValue<T> {
    static KEY: string;
    root: any;
    insert(word: string, value?: T): boolean;
    contains(word: string): boolean;
    getValue: (word: string) => any;
}
