import { ATN, CharStream, DFA, Lexer, RuleContext } from "antlr4"; export default class TASONLexer extends Lexer { static readonly T__0 = 1; static readonly T__1 = 2; static readonly T__2 = 3; static readonly T__3 = 4; static readonly T__4 = 5; static readonly T__5 = 6; static readonly T__6 = 7; static readonly T__7 = 8; static readonly T__8 = 9; static readonly T__9 = 10; static readonly BOOLEAN_TRUE = 11; static readonly BOOLEAN_FALSE = 12; static readonly NULL = 13; static readonly IDENTIFIER = 14; static readonly WS = 15; static readonly SINGLE_LINE_COMMENT = 16; static readonly MULTI_LINE_COMMENT = 17; static readonly STRING = 18; static readonly SYMBOL = 19; static readonly NUMBER = 20; static readonly INVALID_CHAR = 21; 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[]; action(localctx: RuleContext, ruleIndex: number, actionIndex: number): void; private INVALID_CHAR_action; static readonly _serializedATN: number[]; private static __ATN; static get _ATN(): ATN; static DecisionsToDFA: DFA[]; }