/** @this {import("./lexer").Lexer} */ export function tryLineStart(this: import("./lexer").Lexer): boolean; /** @this {import("./lexer").Lexer} */ export function tryNewline(this: import("./lexer").Lexer): boolean; export class tryNewline { col: number; lineStart: boolean; } /** @this {import("./lexer").Lexer} */ export function tryWhitespace(this: import("./lexer").Lexer): boolean; /** @this {import("./lexer").Lexer} */ export function tryMath(this: import("./lexer").Lexer): boolean; /** @this {import("./lexer").Lexer} */ export function tryAt(this: import("./lexer").Lexer): boolean; /** @this {import("./lexer").Lexer} */ export function tryInterpolation(this: import("./lexer").Lexer): boolean; /** @this {import("./lexer").Lexer} */ export function tryString(this: import("./lexer").Lexer): boolean; /** @this {import("./lexer").Lexer} */ export function tryOperator(this: import("./lexer").Lexer): boolean; /** @this {import("./lexer").Lexer} */ export function tryRegex(this: import("./lexer").Lexer): boolean; export class tryRegex { pos: number; } /** @this {import("./lexer").Lexer} */ export function tryNumber(this: import("./lexer").Lexer): boolean; /** @this {import("./lexer").Lexer} */ export function tryIdent(this: import("./lexer").Lexer): boolean; /** @this {import("./lexer").Lexer} */ export function tryText(this: import("./lexer").Lexer): boolean; /** @this {import("./lexer").Lexer} */ export function tryCR(this: import("./lexer").Lexer): boolean; /** @this {import("./lexer").Lexer} */ export function finalize(this: import("./lexer").Lexer): void; /** @this {import("./lexer").Lexer} */ export function tryPlusMinus(this: import("./lexer").Lexer): boolean; export const CHAR_HANDLERS: any[];