import * as antlr from "antlr4ng";
import { LexerAdaptor } from "../misc/LexerAdaptor.js";
export declare class ANTLRv4Lexer extends LexerAdaptor {
    static readonly ACTION = 4;
    static readonly ARG_ACTION = 5;
    static readonly ARG_OR_CHARSET = 6;
    static readonly ASSIGN = 7;
    static readonly LEXER_CHAR_SET = 8;
    static readonly RULE_REF = 9;
    static readonly SEMPRED = 10;
    static readonly STRING_LITERAL = 11;
    static readonly TOKEN_REF = 13;
    static readonly UNICODE_ESC = 14;
    static readonly UNICODE_EXTENDED_ESC = 15;
    static readonly WS = 16;
    static readonly ALT = 17;
    static readonly BLOCK = 18;
    static readonly CLOSURE = 19;
    static readonly ELEMENT_OPTIONS = 20;
    static readonly EPSILON = 21;
    static readonly LEXER_ACTION_CALL = 22;
    static readonly LEXER_ALT_ACTION = 23;
    static readonly OPTIONAL = 24;
    static readonly POSITIVE_CLOSURE = 25;
    static readonly RULE = 26;
    static readonly RULEMODIFIERS = 27;
    static readonly RULES = 28;
    static readonly SET = 29;
    static readonly WILDCARD = 30;
    static readonly DOC_COMMENT = 31;
    static readonly BLOCK_COMMENT = 32;
    static readonly LINE_COMMENT = 33;
    static readonly INT = 34;
    static readonly UNTERMINATED_STRING_LITERAL = 35;
    static readonly BEGIN_ARGUMENT = 36;
    static readonly OPTIONS = 37;
    static readonly TOKENS = 38;
    static readonly CHANNELS = 39;
    static readonly IMPORT = 40;
    static readonly FRAGMENT = 41;
    static readonly LEXER = 42;
    static readonly PARSER = 43;
    static readonly GRAMMAR = 44;
    static readonly PROTECTED = 45;
    static readonly PUBLIC = 46;
    static readonly PRIVATE = 47;
    static readonly RETURNS = 48;
    static readonly LOCALS = 49;
    static readonly THROWS = 50;
    static readonly CATCH = 51;
    static readonly FINALLY = 52;
    static readonly MODE = 53;
    static readonly COLON = 54;
    static readonly COLONCOLON = 55;
    static readonly COMMA = 56;
    static readonly SEMI = 57;
    static readonly LPAREN = 58;
    static readonly RPAREN = 59;
    static readonly RBRACE = 60;
    static readonly RARROW = 61;
    static readonly LT = 62;
    static readonly GT = 63;
    static readonly QUESTION = 64;
    static readonly STAR = 65;
    static readonly PLUS_ASSIGN = 66;
    static readonly PLUS = 67;
    static readonly OR = 68;
    static readonly DOLLAR = 69;
    static readonly RANGE = 70;
    static readonly DOT = 71;
    static readonly AT = 72;
    static readonly POUND = 73;
    static readonly NOT = 74;
    static readonly ID = 75;
    static readonly END_ARGUMENT = 76;
    static readonly UNTERMINATED_ARGUMENT = 77;
    static readonly ARGUMENT_CONTENT = 78;
    static readonly UNTERMINATED_CHAR_SET = 79;
    static readonly Argument = 1;
    static readonly LexerCharSet = 2;
    static readonly channelNames: string[];
    static readonly literalNames: (string | null)[];
    static readonly symbolicNames: (string | null)[];
    static readonly modeNames: string[];
    static readonly ruleNames: string[];
    constructor(input: antlr.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(localContext: antlr.ParserRuleContext | null, ruleIndex: number, actionIndex: number): void;
    private BEGIN_ARGUMENT_action;
    private END_ARGUMENT_action;
    static readonly _serializedATN: number[];
    private static __ATN;
    static get _ATN(): antlr.ATN;
    private static readonly vocabulary;
    get vocabulary(): antlr.Vocabulary;
    private static readonly decisionsToDFA;
}
