import { commandExists, runProcess } from "../process.js"; type ClipboardDeps = { commandExists: typeof commandExists; requireResolve(specifier: string): string; runProcess: typeof runProcess; stdout: Pick; }; export declare function setClipboardTestDeps(overrides: Partial): () => void; export declare function copyTextToClipboard(text: string): Promise; export declare function clipboardSupportAvailable(env?: NodeJS.ProcessEnv): Promise; export declare function clipboardInstallHint(): string; export declare function osc52ClipboardSequence(text: string, env?: NodeJS.ProcessEnv): string; export {};