/** * Cross-platform text → system clipboard. * * - Windows: `clip.exe` (built-in, in PATH on every Windows ≥ XP) * - macOS: `pbcopy` (ships with macOS) * - Linux: tries `wl-copy` (Wayland) → `xclip` → `xsel`, first one found wins * * Throws on failure with a message that identifies the platform tool, * so the REPL can show a useful error toast instead of silently losing * the text. Never rejects on timeout — each tool exits as soon as stdin * closes. */ export declare function copyToClipboard(text: string): Promise; //# sourceMappingURL=clipboard-write.d.ts.map