import { type SyntaxLang } from './lexer.js'; /** * The TypeScript language registration for the lexer engine. * * JavaScript reuses this lexer via the `js`/`javascript` aliases: TypeScript is * a syntactic superset, and the TS-only constructs the lexer recognizes (type * annotations, `as`, generics before a call) can't appear in valid JS, so * running the full TS lexer on JS is a no-op for those paths. There is no * separate JS lexer. */ export declare const lexer_ts: SyntaxLang; //# sourceMappingURL=lexer_ts.d.ts.map