import * as React from 'react'; export interface StreamBoxProps extends React.HTMLAttributes { content: string; status: 'streaming' | 'complete' | 'idle'; } declare function StreamBox({ content, status, className, ...props }: StreamBoxProps): import("react/jsx-runtime").JSX.Element; export { StreamBox };