export type PasteIntent = 'image' | 'text' | null; export declare function pasteIntent(evt: { name: string; sequence?: string; ctrl?: boolean; meta?: boolean; shift?: boolean; }, platform?: NodeJS.Platform): PasteIntent; export declare function isPasteKey(evt: Parameters[0]): boolean; export declare function normalizeClipboardText(text: string): string; export declare function readClipboard(): Promise; export declare function writeClipboard(text: string): void; export interface ClipboardImage { mime: string; base64: string; byteLength: number; } export declare function readClipboardImage(): Promise; //# sourceMappingURL=Clipboard.d.ts.map