import type { WindowsDriver } from '../driver'; import type { TeenProcessExecResult } from 'teen_process'; declare const CONTENT_TYPE: Readonly<{ plaintext: "plaintext"; image: "image"; }>; type ContentTypeEnum = (typeof CONTENT_TYPE)[keyof typeof CONTENT_TYPE]; /** * Sets the Windows clipboard to the given string or PNG-image. * * @param b64Content - Base64-encoded clipboard content to set * @param contentType - Clipboard content type to set (default plain text) */ export declare function windowsSetClipboard(this: WindowsDriver, b64Content: string, contentType?: ContentTypeEnum): Promise>; /** * Returns the Windows clipboard content as a base64-encoded string. * * @param contentType - Clipboard content type to read (only PNG is supported for `image`) */ export declare function windowsGetClipboard(this: WindowsDriver, contentType?: ContentTypeEnum): Promise; export {}; //# sourceMappingURL=clipboard.d.ts.map