import { type MagicTextParserOptions, type MagicTextParserState } from '@hashbrownai/core'; /** * Internal prop-driven hook for streaming Magic Text parsing in React. * * @param text - Full markdown text that typically grows over time. * @param options - Optional parser option overrides. * @param isCompleteInput - When true, finalizes the parse state for the current text. * @returns The current immutable Magic Text parser state. */ export declare function useMagicTextParser(text: string, options?: Partial, isCompleteInput?: boolean): MagicTextParserState; //# sourceMappingURL=use-magic-text-parser.d.ts.map