/** * Copies the given text to the system clipboard. * Supports macOS (pbcopy), Windows (clip), and Linux (xclip/xsel). */ export declare function writeClipboard(text: string): boolean;