import { type ThinkingItem } from "../../ui-core/state/transcript-types.js"; import { type BlockContext } from "./block-context.js"; /** Rough token estimate from content length — never a re-tokenization. */ export declare function thinkingTokenEstimate(content: string): number; export declare function buildThinkingLines(ctx: BlockContext, item: ThinkingItem): string[];