export declare const TokenTypes: { readonly Whitespace: "WHITESPACE"; readonly LeftParenthesis: "LEFT_PARENTHESIS"; readonly RightParenthesis: "RIGHT_PARENTHESIS"; readonly AND: "AND"; readonly OR: "OR"; readonly NOT: "NOT"; readonly Comparator: "COMPARATOR"; readonly Colon: "COLON"; readonly QuotedString: "QUOTED_STRING"; readonly Identifier: "IDENTIFIER"; readonly Invalid: "INVALID"; readonly EndOfLine: "END_OF_LINE"; }; type TokenTypesType = typeof TokenTypes; export type TokenTypeKeys = keyof TokenTypesType; export type TokenTypeValues = TokenTypesType[TokenTypeKeys]; export declare const ComparatorBeginnings: string[]; export declare const SpecialChars: { readonly Colon: ":"; readonly LeftParenthesis: "("; readonly RightParenthesis: ")"; readonly SingleQuote: "'"; readonly DoubleQuote: "\""; }; export {};