import type { Options } from './options.js'; import { type Parser } from './parse/index.js'; import { parse as parseTimestamp } from './timestamp.js'; import { Lexer } from './tokenize/index.js'; import type { Document } from './types.js'; export * from './types.js'; export { parseTimestamp, Options as ParseOptions, Parser }; export declare const tokenize: (text: string, options?: Partial) => Lexer; export declare const parse: (text: string, options?: Partial) => Document; export declare function makeParser(text: string, options?: Partial): Parser;