import React from 'react'; import type { ReplTurnState } from '../repl-events.js'; export interface StreamingViewProps { turnState: ReplTurnState; } export default function StreamingView({ turnState }: StreamingViewProps): React.ReactNode;