/** * Live-updating Claude response during streaming. * Shows raw text with a blinking cursor. Full markdown formatting is applied * only after completion when the message moves to MessageHistory/Static. * * The viewport is capped to ~50% of terminal height with wrapping-aware line * counting, so the dynamic area never exceeds what Ink can safely erase. */ import React from 'react'; interface StreamingResponseProps { content: string; } export declare function StreamingResponse({ content }: StreamingResponseProps): React.ReactElement | null; export {}; //# sourceMappingURL=StreamingResponse.d.ts.map