import type { ClipboardApi } from "./index.js"; export type Osc52ClipboardOptions = Readonly<{ target?: string; supported?: boolean; maxBytes?: number; write?: (sequence: string) => void | Promise; readText?: () => Promise; }>; export declare function createOsc52ClipboardProvider(options?: Osc52ClipboardOptions): ClipboardApi;