export declare const getCodePoint: (str: string, index: number) => number; export declare function encodeHTMLTrieRe(regExp: RegExp, str: string): string; export interface TrieNode { value?: string; next?: Map; } export declare function getTrie(map: Record): Map; //# sourceMappingURL=encode-trie.d.ts.map