import type { AgentAdapter } from './types.js'; /** * Universal fallback adapter: copy the (human-approved) instruction to the * clipboard and tell the operator to paste it into their coding-agent * session. Always available; outcome is handed_off. */ type ClipboardCommand = { cmd: string; args: string[]; }; /** Platform clipboard commands, first hit wins. Exported for tests. */ export declare function clipboardCandidates(platform?: NodeJS.Platform): ClipboardCommand[]; /** Pipe text into the first clipboard tool that works. Never puts it in argv. */ export declare function copyToClipboard(text: string, candidates?: ClipboardCommand[]): Promise; export declare function createPasteAdapter(): AgentAdapter; export {}; //# sourceMappingURL=paste.d.ts.map