export interface StreamingMarkdownBlockProps { content: string; isActive: boolean; onStreamComplete?: () => void; tokenDelayMs?: number; className?: string; } export declare function StreamingMarkdownBlock({ content, isActive, onStreamComplete, tokenDelayMs, className, }: StreamingMarkdownBlockProps): import("react/jsx-runtime").JSX.Element | null;