import type { SerializedRange } from "./clipboardModel.js"; export declare function writeClipboard({ tsv, html }: SerializedRange): Promise; export declare function readClipboard(): Promise<{ html?: string; tsv?: string; imageBytes?: Uint8Array; imageType?: string; }>;