import { ATN, CharStream, DFA, Lexer } from 'antlr4'; export default class RoomleGrammarLexer 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 T__10 = 11; static readonly T__11 = 12; static readonly T__12 = 13; static readonly T__13 = 14; static readonly T__14 = 15; static readonly T__15 = 16; static readonly T__16 = 17; static readonly Bool = 18; static readonly Int = 19; static readonly Float = 20; static readonly Identifier = 21; static readonly String = 22; static readonly Or = 23; static readonly And = 24; static readonly Equals = 25; static readonly NEquals = 26; static readonly GTEquals = 27; static readonly LTEquals = 28; static readonly GT = 29; static readonly LT = 30; static readonly Add = 31; static readonly Subtract = 32; static readonly Multiply = 33; static readonly Divide = 34; static readonly SColon = 35; static readonly Assign = 36; static readonly Concat = 37; static readonly Question = 38; static readonly Separate = 39; static readonly Modulo = 40; static readonly Comment = 41; static readonly Space = 42; static readonly LineBreak = 43; 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[]; }