import { ATN } from 'antlr4ts/atn/ATN'; import { CharStream } from 'antlr4ts/CharStream'; import { Lexer } from 'antlr4ts/Lexer'; import { Vocabulary } from 'antlr4ts/Vocabulary'; export declare class KotlinLexer extends Lexer { static readonly ShebangLine = 1; static readonly DelimitedComment = 2; static readonly LineComment = 3; static readonly WS = 4; static readonly NL = 5; static readonly RESERVED = 6; static readonly DOT = 7; static readonly COMMA = 8; static readonly LPAREN = 9; static readonly RPAREN = 10; static readonly LSQUARE = 11; static readonly RSQUARE = 12; static readonly LCURL = 13; static readonly RCURL = 14; static readonly MULT = 15; static readonly MOD = 16; static readonly DIV = 17; static readonly ADD = 18; static readonly SUB = 19; static readonly INCR = 20; static readonly DECR = 21; static readonly CONJ = 22; static readonly DISJ = 23; static readonly EXCL = 24; static readonly COLON = 25; static readonly SEMICOLON = 26; static readonly ASSIGNMENT = 27; static readonly ADD_ASSIGNMENT = 28; static readonly SUB_ASSIGNMENT = 29; static readonly MULT_ASSIGNMENT = 30; static readonly DIV_ASSIGNMENT = 31; static readonly MOD_ASSIGNMENT = 32; static readonly ARROW = 33; static readonly DOUBLE_ARROW = 34; static readonly RANGE = 35; static readonly COLONCOLON = 36; static readonly Q_COLONCOLON = 37; static readonly DOUBLE_SEMICOLON = 38; static readonly HASH = 39; static readonly AT = 40; static readonly QUEST = 41; static readonly ELVIS = 42; static readonly LANGLE = 43; static readonly RANGLE = 44; static readonly LE = 45; static readonly GE = 46; static readonly EXCL_EQ = 47; static readonly EXCL_EQEQ = 48; static readonly AS_SAFE = 49; static readonly EQEQ = 50; static readonly EQEQEQ = 51; static readonly SINGLE_QUOTE = 52; static readonly RETURN_AT = 53; static readonly CONTINUE_AT = 54; static readonly BREAK_AT = 55; static readonly FILE = 56; static readonly PACKAGE = 57; static readonly IMPORT = 58; static readonly CLASS = 59; static readonly INTERFACE = 60; static readonly FUN = 61; static readonly OBJECT = 62; static readonly VAL = 63; static readonly VAR = 64; static readonly TYPE_ALIAS = 65; static readonly CONSTRUCTOR = 66; static readonly BY = 67; static readonly COMPANION = 68; static readonly INIT = 69; static readonly THIS = 70; static readonly SUPER = 71; static readonly TYPEOF = 72; static readonly WHERE = 73; static readonly IF = 74; static readonly ELSE = 75; static readonly WHEN = 76; static readonly TRY = 77; static readonly CATCH = 78; static readonly FINALLY = 79; static readonly FOR = 80; static readonly DO = 81; static readonly WHILE = 82; static readonly THROW = 83; static readonly RETURN = 84; static readonly CONTINUE = 85; static readonly BREAK = 86; static readonly AS = 87; static readonly IS = 88; static readonly IN = 89; static readonly NOT_IS = 90; static readonly NOT_IN = 91; static readonly OUT = 92; static readonly FIELD = 93; static readonly PROPERTY = 94; static readonly GET = 95; static readonly SET = 96; static readonly GETTER = 97; static readonly SETTER = 98; static readonly RECEIVER = 99; static readonly PARAM = 100; static readonly SETPARAM = 101; static readonly DELEGATE = 102; static readonly DYNAMIC = 103; static readonly PUBLIC = 104; static readonly PRIVATE = 105; static readonly PROTECTED = 106; static readonly INTERNAL = 107; static readonly ENUM = 108; static readonly SEALED = 109; static readonly ANNOTATION = 110; static readonly DATA = 111; static readonly INNER = 112; static readonly TAILREC = 113; static readonly OPERATOR = 114; static readonly INLINE = 115; static readonly INFIX = 116; static readonly EXTERNAL = 117; static readonly SUSPEND = 118; static readonly OVERRIDE = 119; static readonly ABSTRACT = 120; static readonly FINAL = 121; static readonly OPEN = 122; static readonly CONST = 123; static readonly LATEINIT = 124; static readonly VARARG = 125; static readonly NOINLINE = 126; static readonly CROSSINLINE = 127; static readonly REIFIED = 128; static readonly QUOTE_OPEN = 129; static readonly TRIPLE_QUOTE_OPEN = 130; static readonly RealLiteral = 131; static readonly FloatLiteral = 132; static readonly DoubleLiteral = 133; static readonly LongLiteral = 134; static readonly IntegerLiteral = 135; static readonly HexLiteral = 136; static readonly BinLiteral = 137; static readonly BooleanLiteral = 138; static readonly NullLiteral = 139; static readonly Identifier = 140; static readonly LabelReference = 141; static readonly LabelDefinition = 142; static readonly FieldIdentifier = 143; static readonly CharacterLiteral = 144; static readonly UNICODE_CLASS_LL = 145; static readonly UNICODE_CLASS_LM = 146; static readonly UNICODE_CLASS_LO = 147; static readonly UNICODE_CLASS_LT = 148; static readonly UNICODE_CLASS_LU = 149; static readonly UNICODE_CLASS_ND = 150; static readonly UNICODE_CLASS_NL = 151; static readonly Inside_Comment = 152; static readonly Inside_WS = 153; static readonly Inside_NL = 154; static readonly QUOTE_CLOSE = 155; static readonly LineStrRef = 156; static readonly LineStrText = 157; static readonly LineStrEscapedChar = 158; static readonly LineStrExprStart = 159; static readonly TRIPLE_QUOTE_CLOSE = 160; static readonly MultiLineStringQuote = 161; static readonly MultiLineStrRef = 162; static readonly MultiLineStrText = 163; static readonly MultiLineStrEscapedChar = 164; static readonly MultiLineStrExprStart = 165; static readonly MultiLineNL = 166; static readonly StrExpr_IN = 167; static readonly StrExpr_Comment = 168; static readonly StrExpr_WS = 169; static readonly StrExpr_NL = 170; static readonly Inside = 1; static readonly LineString = 2; static readonly MultiLineString = 3; static readonly StringExpression = 4; static readonly modeNames: string[]; static readonly ruleNames: string[]; private static readonly _LITERAL_NAMES; private static readonly _SYMBOLIC_NAMES; static readonly VOCABULARY: Vocabulary; readonly vocabulary: Vocabulary; constructor(input: CharStream); readonly grammarFileName: string; readonly ruleNames: string[]; readonly serializedATN: string; readonly modeNames: string[]; private static readonly _serializedATNSegments; private static readonly _serializedATNSegment0; private static readonly _serializedATNSegment1; private static readonly _serializedATNSegment2; private static readonly _serializedATNSegment3; private static readonly _serializedATNSegment4; private static readonly _serializedATNSegment5; static readonly _serializedATN: string; static __ATN: ATN; static readonly _ATN: ATN; }