export declare class Trie { v: T; children: Trie[]; constructor(v: T); insert(k: string, v: T): void; lookup(k: string): T | null; } //# sourceMappingURL=trie.d.ts.map