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