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