export declare class TrieNode { value: string; children: Map; isEnd: boolean; constructor(value: string); addChild(child: TrieNode | string): void; hasChild(child: TrieNode | string): boolean; getChild(key: string): TrieNode | undefined; } //# sourceMappingURL=TrieNode.d.ts.map