import type { ClipboardEntry } from "./ClipboardEntry.js"; /** * Full clipboard state — emitted as a single payload on every relevant change. */ export type ClipboardData = { /** * Whether the user has enabled clipboard history in Windows Settings. */ isHistoryEnabled: boolean; /** * All clipboard history entries, newest first. */ history: Array; }; //# sourceMappingURL=ClipboardData.d.ts.map