import { KeywordMatchResult } from "../parsers/KeywordParser"; export declare class KeywordTrie { private readonly root; private currentNode; constructor(keywords: string[][]); private createNode; private addKeyword; reset(): void; pushLexeme(lexeme: string): KeywordMatchResult; }