export declare class Trie<T> {
    static KEY: string;
    root: any;
    insert(word: string): boolean;
    contains(word: string): boolean;
}
