/** * Clipboard utilities using OSC 52 escape sequence. * Works with most modern terminals (iTerm2, Alacritty, kitty, WezTerm, etc.) */ /** * Copy text to the system clipboard using OSC 52. * The terminal intercepts this escape sequence and copies the text. */ export declare function copyToClipboard(text: string): void; /** * Copy text to the primary selection (X11) using OSC 52. * Only works on X11 systems. */ export declare function copyToPrimary(text: string): void; //# sourceMappingURL=clipboard.d.ts.map