/** Host editor and clipboard adapters used by the terminal surface. */ import type { TranscriptView } from './render/projection.ts'; /** Copy UTF-8 text through the platform clipboard command. */ export declare function copyText(text: string): Promise; /** Latest complete assistant text, excluding streaming and reasoning. */ export declare function latestAssistantText(view: TranscriptView): string | undefined;