import { ATN } from "antlr4ts/atn/ATN"; import { CharStream } from "antlr4ts/CharStream"; import { Lexer } from "antlr4ts/Lexer"; import { Vocabulary } from "antlr4ts/Vocabulary"; export declare class MalloyLexer extends Lexer { static readonly ACCEPT = 1; static readonly AGGREGATE = 2; static readonly CALCULATE = 3; static readonly CALCULATION = 4; static readonly CONNECTION = 5; static readonly DECLARE = 6; static readonly DIMENSION = 7; static readonly DRILL = 8; static readonly EXCEPT = 9; static readonly EXTENDQ = 10; static readonly GROUP_BY = 11; static readonly GROUPED_BY = 12; static readonly HAVING = 13; static readonly INDEX = 14; static readonly INTERNAL = 15; static readonly JOIN_CROSS = 16; static readonly JOIN_ONE = 17; static readonly JOIN_MANY = 18; static readonly LIMIT = 19; static readonly MEASURE = 20; static readonly NEST = 21; static readonly ORDER_BY = 22; static readonly PARTITION_BY = 23; static readonly PRIMARY_KEY = 24; static readonly PRIVATE = 25; static readonly PROJECT = 26; static readonly PUBLIC = 27; static readonly QUERY = 28; static readonly RENAME = 29; static readonly RUN = 30; static readonly SAMPLE = 31; static readonly SELECT = 32; static readonly SOURCE = 33; static readonly TOP = 34; static readonly WHERE = 35; static readonly VIEW = 36; static readonly TIMEZONE = 37; static readonly ALL = 38; static readonly AND = 39; static readonly AS = 40; static readonly ASC = 41; static readonly AVG = 42; static readonly BOOLEAN = 43; static readonly BY = 44; static readonly CASE = 45; static readonly CAST = 46; static readonly CONDITION = 47; static readonly COUNT = 48; static readonly COMPOSE = 49; static readonly DATE = 50; static readonly DAY = 51; static readonly DESC = 52; static readonly DISTINCT = 53; static readonly ELSE = 54; static readonly END = 55; static readonly EXCLUDE = 56; static readonly EXTEND = 57; static readonly FALSE = 58; static readonly FILTER = 59; static readonly FULL = 60; static readonly FOR = 61; static readonly FROM = 62; static readonly HAS = 63; static readonly HOUR = 64; static readonly IMPORT = 65; static readonly INCLUDE = 66; static readonly INNER = 67; static readonly IS = 68; static readonly IN = 69; static readonly INTERNAL_KW = 70; static readonly JSON = 71; static readonly LAST = 72; static readonly LEFT = 73; static readonly LIKE = 74; static readonly MAX = 75; static readonly MIN = 76; static readonly MINUTE = 77; static readonly MONTH = 78; static readonly NOT = 79; static readonly NOW = 80; static readonly NULL = 81; static readonly NUMBER = 82; static readonly ON = 83; static readonly OR = 84; static readonly PICK = 85; static readonly PRIVATE_KW = 86; static readonly PUBLIC_KW = 87; static readonly QUARTER = 88; static readonly RIGHT = 89; static readonly SECOND = 90; static readonly STRING = 91; static readonly SOURCE_KW = 92; static readonly SUM = 93; static readonly SQL = 94; static readonly TABLE = 95; static readonly THEN = 96; static readonly THIS = 97; static readonly TIMESTAMP = 98; static readonly TO = 99; static readonly TRUE = 100; static readonly TURTLE = 101; static readonly WEEK = 102; static readonly WHEN = 103; static readonly WITH = 104; static readonly YEAR = 105; static readonly UNGROUPED = 106; static readonly HACKY_REGEX = 107; static readonly RAW_SQ = 108; static readonly RAW_DQ = 109; static readonly SQ3_FILTER = 110; static readonly SQ_FILTER = 111; static readonly DQ3_FILTER = 112; static readonly DQ_FILTER = 113; static readonly BQ3_FILTER = 114; static readonly BQ_FILTER = 115; static readonly SQ_STRING = 116; static readonly DQ_STRING = 117; static readonly BQ_STRING = 118; static readonly DOC_ANNOTATION = 119; static readonly ANNOTATION = 120; static readonly AMPER = 121; static readonly ARROW = 122; static readonly FAT_ARROW = 123; static readonly OPAREN = 124; static readonly CPAREN = 125; static readonly OBRACK = 126; static readonly CBRACK = 127; static readonly OCURLY = 128; static readonly CCURLY = 129; static readonly DOUBLECOLON = 130; static readonly TRIPLECOLON = 131; static readonly EXCLAM = 132; static readonly COLON = 133; static readonly COMMA = 134; static readonly DOT = 135; static readonly LT = 136; static readonly GT = 137; static readonly EQ = 138; static readonly NE = 139; static readonly LTE = 140; static readonly GTE = 141; static readonly PLUS = 142; static readonly MINUS = 143; static readonly STAR = 144; static readonly STARSTAR = 145; static readonly SLASH = 146; static readonly BAR = 147; static readonly SEMI = 148; static readonly NOT_MATCH = 149; static readonly MATCH = 150; static readonly PERCENT = 151; static readonly DOUBLE_QMARK = 152; static readonly QMARK = 153; static readonly LITERAL_TIMESTAMP = 154; static readonly LITERAL_HOUR = 155; static readonly LITERAL_DAY = 156; static readonly LITERAL_QUARTER = 157; static readonly LITERAL_MONTH = 158; static readonly LITERAL_WEEK = 159; static readonly LITERAL_YEAR = 160; static readonly IDENTIFIER = 161; static readonly PERCENT_LITERAL = 162; static readonly NUMERIC_LITERAL = 163; static readonly INTEGER_LITERAL = 164; static readonly BLOCK_COMMENT = 165; static readonly COMMENT_TO_EOL = 166; static readonly WHITE_SPACE = 167; static readonly SQL_BEGIN = 168; static readonly UNWATED_CHARS_TRAILING_NUMBERS = 169; static readonly UNEXPECTED_CHAR = 170; static readonly OPEN_CODE = 171; static readonly SQL_END = 172; static readonly SQL_MODE = 1; 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[]; private static readonly _serializedATNSegments; private static readonly _serializedATNSegment0; private static readonly _serializedATNSegment1; private static readonly _serializedATNSegment2; private static readonly _serializedATNSegment3; static readonly _serializedATN: string; static __ATN: ATN; static get _ATN(): ATN; }