export declare class RadixTree<T> {
    private root;
    constructor();
    insert(word: string, value: T): void;
    contains(word: string): boolean;
    get(word: string): T;
}
