/** * Operator Lookup Tables */ import type { TokenType } from '../types.js'; /** Two-character operator lookup table */ export declare const TWO_CHAR_OPERATORS: Record; /** Single-character operator lookup table */ export declare const SINGLE_CHAR_OPERATORS: Record; /** Keyword lookup table */ export declare const KEYWORDS: Record; /** * Read-only view of the reserved keyword names. * Derived from the keys of the internal {@link KEYWORDS} record and frozen at * module load so consumers cannot mutate it at runtime. */ export declare const KEYWORD_NAMES: readonly string[];