import { ATN, CharStream, DFA, Lexer } from "antlr4"; export default class GenericSqlLexer extends Lexer { static readonly T__0 = 1; static readonly T__1 = 2; static readonly T__2 = 3; static readonly T__3 = 4; static readonly SELECT = 5; static readonly ASTERISK = 6; static readonly FROM = 7; static readonly WHERE = 8; static readonly AND = 9; static readonly OR = 10; static readonly NOT = 11; static readonly AS = 12; static readonly LT = 13; static readonly LTE = 14; static readonly GT = 15; static readonly GTE = 16; static readonly EQUALS = 17; static readonly NOT_EQUALS = 18; static readonly IS = 19; static readonly NULL = 20; static readonly CAST = 21; static readonly REGEXP = 22; static readonly INDEXED_PARAM = 23; static readonly PARAM_PLACEHOLDER = 24; static readonly ID = 25; static readonly DIGIT = 26; static readonly QUOTED_ID = 27; static readonly STRING = 28; static readonly WHITESPACE = 29; static readonly COMMENT = 30; static readonly MULTILINE_COMMENT = 31; static readonly EOF: number; static readonly channelNames: string[]; static readonly literalNames: (string | null)[]; static readonly symbolicNames: (string | null)[]; static readonly modeNames: string[]; static readonly ruleNames: string[]; constructor(input: CharStream); get grammarFileName(): string; get literalNames(): (string | null)[]; get symbolicNames(): (string | null)[]; get ruleNames(): string[]; get serializedATN(): number[]; get channelNames(): string[]; get modeNames(): string[]; static readonly _serializedATN: number[]; private static __ATN; static get _ATN(): ATN; static DecisionsToDFA: DFA[]; } //# sourceMappingURL=GenericSqlLexer.d.ts.map