import * as antlr from "antlr4ng"; import { STGroup } from "../../STGroup.js"; export declare class GroupLexer extends antlr.Lexer { static readonly TRUE = 1; static readonly FALSE = 2; static readonly LBRACK = 3; static readonly RBRACK = 4; static readonly AT = 5; static readonly DOT = 6; static readonly COLON = 7; static readonly SEMICOLON = 8; static readonly COMMA = 9; static readonly LPAREN = 10; static readonly RPAREN = 11; static readonly ASSIGN = 12; static readonly EQUAL = 13; static readonly IMPORT = 14; static readonly GROUP = 15; static readonly IMPLEMENTS = 16; static readonly DELIMITERS = 17; static readonly DEFAULT = 18; static readonly ID = 19; static readonly STRING = 20; static readonly BIGSTRING_NO_NL = 21; static readonly BIGSTRING = 22; static readonly ANONYMOUS_TEMPLATE = 23; static readonly COMMENT = 24; static readonly LINE_COMMENT = 25; static readonly WS = 26; static readonly channelNames: string[]; static readonly literalNames: (string | null)[]; static readonly symbolicNames: (string | null)[]; static readonly modeNames: string[]; static readonly ruleNames: string[]; currentGroup: STGroup; getSourceName(): 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 STRING_action; private BIGSTRING_NO_NL_action; private BIGSTRING_action; private ANONYMOUS_TEMPLATE_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; }