/** * Async clipboard API wrappers. * * Provides simple read/write access to the system clipboard * via the Async Clipboard API. * * @module bquery/media */ import type { ClipboardAPI } from './types'; /** * Clipboard API wrapper providing simple async read/write access. * * Uses the modern Async Clipboard API (`navigator.clipboard`) under the hood. * Both methods are `Promise`-based and will reject if the API is unavailable * or permission is denied. * * @example * ```ts * import { clipboard } from '@bquery/bquery/media'; * * // Write text to clipboard * await clipboard.write('Hello, world!'); * * // Read text from clipboard * const text = await clipboard.read(); * console.log(text); // "Hello, world!" * ``` */ export declare const clipboard: ClipboardAPI; //# sourceMappingURL=clipboard.d.ts.map