import type { Component } from "../runtime/component.ts"; export interface StreamingTextOptions { readonly content: string; readonly streaming?: boolean; readonly indicator?: string; readonly style?: (text: string) => string; } export declare class StreamingText implements Component { private readonly options; constructor(options: StreamingTextOptions); render(width: number, height?: number): string[]; } //# sourceMappingURL=streaming-text.d.ts.map