import { type Token } from "marked"; export declare function configureMarked(): void; export declare function lexMarkdown(content: string): Token[]; export declare function splitStreamingMarkdown(content: string, stablePrefix: string): { stablePrefix: string; unstableSuffix: string; };