declare const rangeChar: (begin: string, end: string) => import("./parser").Parser; declare const oneOf: (str: string) => import("./parser").Parser; declare const noneOf: (str: string) => import("./parser").Parser; declare const index: () => import("./parser").Parser<{ offset: number; line: number; column: number; }>; declare const any: () => import("./parser").Parser; declare const all: () => import("./parser").Parser; declare const EOF: () => import("./parser").Parser; declare const SOL: () => import("./parser").Parser; declare const digits: () => import("./parser").Parser; declare const letter: () => import("./parser").Parser; declare const letters: () => import("./parser").Parser; declare const optWhitespace: () => import("./parser").Parser; declare const digit: () => import("./parser").Parser; declare const whitespace: () => import("./parser").Parser; declare const cr: () => import("./parser").Parser<"\r">; declare const lf: () => import("./parser").Parser<"\n">; declare const crlf: () => import("./parser").Parser<"\r\n">; declare const NL: () => import("./parser").Parser<"\n" | "\r" | "\r\n">; declare const EOL: () => import("./parser").Parser<"\n" | "\r" | "\r\n" | null>; declare const aLine: () => import("./parser").Parser; export { EOL, SOL, EOF, digit, digits, letter, letters, optWhitespace, whitespace, cr, lf, crlf, NL, any, all, index, aLine, rangeChar, oneOf, noneOf }; export { string, regexp } from './parser'; //# sourceMappingURL=token.d.ts.map