import { ATN } from "antlr4ts/atn/ATN"; import { CharStream } from "antlr4ts/CharStream"; import { Lexer } from "antlr4ts/Lexer"; import { Vocabulary } from "antlr4ts/Vocabulary"; export declare class SoqlLexer extends Lexer { static readonly MINUS = 1; static readonly TILDE = 2; static readonly PLUS = 3; static readonly TIMES = 4; static readonly DIVIDE = 5; static readonly LPAREN = 6; static readonly RPAREN = 7; static readonly COMMA = 8; static readonly UNDERSCORE = 9; static readonly AND = 10; static readonly OR = 11; static readonly TRUE = 12; static readonly FALSE = 13; static readonly WITH = 14; static readonly DATA = 15; static readonly CATEGORY = 16; static readonly CATEGORY_AT = 17; static readonly CATEGORY_ABOVE = 18; static readonly CATEGORY_BELOW = 19; static readonly CATEGORY_ABOVE_OR_BELOW = 20; static readonly SOQL_OFFSET = 21; static readonly FOR = 22; static readonly VIEW = 23; static readonly LIMIT = 24; static readonly REFERENCE = 25; static readonly TYPEOF = 26; static readonly WHEN = 27; static readonly WHERE = 28; static readonly THEN = 29; static readonly ELSE = 30; static readonly END = 31; static readonly DISTANCE = 32; static readonly GEOLOCATION = 33; static readonly GROUP = 34; static readonly ROLLUP = 35; static readonly CUBE = 36; static readonly HAVING = 37; static readonly INCLUDES = 38; static readonly EXCLUDES = 39; static readonly ORDER = 40; static readonly IN = 41; static readonly NOT = 42; static readonly BY = 43; static readonly ASC = 44; static readonly DESC = 45; static readonly NULLS = 46; static readonly CASE = 47; static readonly FIELDS = 48; static readonly SELECT = 49; static readonly COUNT = 50; static readonly FROM = 51; static readonly LOOKUP = 52; static readonly SCOPE = 53; static readonly AS = 54; static readonly USING = 55; static readonly NULL = 56; static readonly UPDATE = 57; static readonly FIRST = 58; static readonly LAST = 59; static readonly LIKE = 60; static readonly BIND = 61; static readonly HIERARCHICAL = 62; static readonly FLAT = 63; static readonly IDENTIFIER = 64; static readonly COMMENT = 65; static readonly DOT = 66; static readonly COLON = 67; static readonly WS = 68; static readonly EQ = 69; static readonly LT = 70; static readonly GT = 71; static readonly NOT_EQ = 72; static readonly ALT_NOT_EQ = 73; static readonly INTEGER_LITERAL = 74; static readonly DECIMAL_LITERAL = 75; static readonly STR_START = 76; static readonly DATE = 77; static readonly DATETIME = 78; static readonly TIME = 79; static readonly CURRENCY = 80; static readonly ESCAPE_CHAR = 81; static readonly VALID_CHARS = 82; static readonly NEW_LINE = 83; static readonly STR_END = 84; static readonly VALID_ESCAPE_CHAR = 85; static readonly VALID_ESCAPE_LIKE_CHAR = 86; static readonly INVALID_ESCAPE_CHAR = 87; static readonly INVALID_ESCAPE_UNICODE = 88; static readonly ESCAPE_UNICODE = 89; static readonly HEX_DIGIT_1 = 90; static readonly PARSE_STRING_WITH_ESCAPES = 1; static readonly ESCAPE_CHARS = 2; 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[]; /* @ts-ignore */ get serializedATN(): string; get channelNames(): string[]; get modeNames(): string[]; private static readonly _serializedATNSegments; private static readonly _serializedATNSegment0; private static readonly _serializedATNSegment1; static readonly _serializedATN: string; static __ATN: ATN; static get _ATN(): ATN; }