import { ATN } from "antlr4ts/atn/ATN";
import { CharStream } from "antlr4ts/CharStream";
import { Lexer } from "antlr4ts/Lexer";
import { RuleContext } from "antlr4ts/RuleContext";
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_WS = 24;
    static readonly EXCL_NO_WS = 25;
    static readonly COLON = 26;
    static readonly SEMICOLON = 27;
    static readonly ASSIGNMENT = 28;
    static readonly ADD_ASSIGNMENT = 29;
    static readonly SUB_ASSIGNMENT = 30;
    static readonly MULT_ASSIGNMENT = 31;
    static readonly DIV_ASSIGNMENT = 32;
    static readonly MOD_ASSIGNMENT = 33;
    static readonly ARROW = 34;
    static readonly DOUBLE_ARROW = 35;
    static readonly RANGE = 36;
    static readonly COLONCOLON = 37;
    static readonly DOUBLE_SEMICOLON = 38;
    static readonly HASH = 39;
    static readonly AT_NO_WS = 40;
    static readonly AT_POST_WS = 41;
    static readonly AT_PRE_WS = 42;
    static readonly AT_BOTH_WS = 43;
    static readonly QUEST_WS = 44;
    static readonly QUEST_NO_WS = 45;
    static readonly LANGLE = 46;
    static readonly RANGLE = 47;
    static readonly LE = 48;
    static readonly GE = 49;
    static readonly EXCL_EQ = 50;
    static readonly EXCL_EQEQ = 51;
    static readonly AS_SAFE = 52;
    static readonly EQEQ = 53;
    static readonly EQEQEQ = 54;
    static readonly SINGLE_QUOTE = 55;
    static readonly RETURN_AT = 56;
    static readonly CONTINUE_AT = 57;
    static readonly BREAK_AT = 58;
    static readonly THIS_AT = 59;
    static readonly SUPER_AT = 60;
    static readonly FILE = 61;
    static readonly FIELD = 62;
    static readonly PROPERTY = 63;
    static readonly GET = 64;
    static readonly SET = 65;
    static readonly RECEIVER = 66;
    static readonly PARAM = 67;
    static readonly SETPARAM = 68;
    static readonly DELEGATE = 69;
    static readonly PACKAGE = 70;
    static readonly IMPORT = 71;
    static readonly CLASS = 72;
    static readonly INTERFACE = 73;
    static readonly FUN = 74;
    static readonly OBJECT = 75;
    static readonly VAL = 76;
    static readonly VAR = 77;
    static readonly TYPE_ALIAS = 78;
    static readonly CONSTRUCTOR = 79;
    static readonly BY = 80;
    static readonly COMPANION = 81;
    static readonly INIT = 82;
    static readonly THIS = 83;
    static readonly SUPER = 84;
    static readonly TYPEOF = 85;
    static readonly WHERE = 86;
    static readonly IF = 87;
    static readonly ELSE = 88;
    static readonly WHEN = 89;
    static readonly TRY = 90;
    static readonly CATCH = 91;
    static readonly FINALLY = 92;
    static readonly FOR = 93;
    static readonly DO = 94;
    static readonly WHILE = 95;
    static readonly THROW = 96;
    static readonly RETURN = 97;
    static readonly CONTINUE = 98;
    static readonly BREAK = 99;
    static readonly AS = 100;
    static readonly IS = 101;
    static readonly IN = 102;
    static readonly NOT_IS = 103;
    static readonly NOT_IN = 104;
    static readonly OUT = 105;
    static readonly DYNAMIC = 106;
    static readonly PUBLIC = 107;
    static readonly PRIVATE = 108;
    static readonly PROTECTED = 109;
    static readonly INTERNAL = 110;
    static readonly ENUM = 111;
    static readonly SEALED = 112;
    static readonly ANNOTATION = 113;
    static readonly DATA = 114;
    static readonly INNER = 115;
    static readonly TAILREC = 116;
    static readonly OPERATOR = 117;
    static readonly INLINE = 118;
    static readonly INFIX = 119;
    static readonly EXTERNAL = 120;
    static readonly SUSPEND = 121;
    static readonly OVERRIDE = 122;
    static readonly ABSTRACT = 123;
    static readonly FINAL = 124;
    static readonly OPEN = 125;
    static readonly CONST = 126;
    static readonly LATEINIT = 127;
    static readonly VARARG = 128;
    static readonly NOINLINE = 129;
    static readonly CROSSINLINE = 130;
    static readonly REIFIED = 131;
    static readonly EXPECT = 132;
    static readonly ACTUAL = 133;
    static readonly RealLiteral = 134;
    static readonly FloatLiteral = 135;
    static readonly DoubleLiteral = 136;
    static readonly IntegerLiteral = 137;
    static readonly HexLiteral = 138;
    static readonly BinLiteral = 139;
    static readonly UnsignedLiteral = 140;
    static readonly LongLiteral = 141;
    static readonly BooleanLiteral = 142;
    static readonly NullLiteral = 143;
    static readonly CharacterLiteral = 144;
    static readonly Identifier = 145;
    static readonly IdentifierOrSoftKey = 146;
    static readonly FieldIdentifier = 147;
    static readonly QUOTE_OPEN = 148;
    static readonly TRIPLE_QUOTE_OPEN = 149;
    static readonly UNICODE_CLASS_LL = 150;
    static readonly UNICODE_CLASS_LM = 151;
    static readonly UNICODE_CLASS_LO = 152;
    static readonly UNICODE_CLASS_LT = 153;
    static readonly UNICODE_CLASS_LU = 154;
    static readonly UNICODE_CLASS_ND = 155;
    static readonly UNICODE_CLASS_NL = 156;
    static readonly QUOTE_CLOSE = 157;
    static readonly LineStrRef = 158;
    static readonly LineStrText = 159;
    static readonly LineStrEscapedChar = 160;
    static readonly LineStrExprStart = 161;
    static readonly TRIPLE_QUOTE_CLOSE = 162;
    static readonly MultiLineStringQuote = 163;
    static readonly MultiLineStrRef = 164;
    static readonly MultiLineStrText = 165;
    static readonly MultiLineStrExprStart = 166;
    static readonly Inside_Comment = 167;
    static readonly Inside_WS = 168;
    static readonly Inside_NL = 169;
    static readonly ErrorCharacter = 170;
    static readonly LineString = 1;
    static readonly MultiLineString = 2;
    static readonly Inside = 3;
    static readonly channelNames: string[];
    static readonly modeNames: string[];
    static readonly ruleNames: string[];
    private static readonly _LITERAL_NAMES;
    private static readonly _SYMBOLIC_NAMES;
    static readonly VOCABULARY: Vocabulary;
    get vocabulary(): Vocabulary;
    constructor(input: CharStream);
    get grammarFileName(): string;
    get ruleNames(): string[];
    get serializedATN(): string;
    get channelNames(): string[];
    get modeNames(): string[];
    action(_localctx: RuleContext, ruleIndex: number, actionIndex: number): void;
    private RCURL_action;
    private static readonly _serializedATNSegments;
    private static readonly _serializedATNSegment0;
    private static readonly _serializedATNSegment1;
    private static readonly _serializedATNSegment2;
    private static readonly _serializedATNSegment3;
    private static readonly _serializedATNSegment4;
    static readonly _serializedATN: string;
    static __ATN: ATN;
    static get _ATN(): ATN;
}
