/** * Fallback copy/paste strategy backed by `sessionStorage`. Used when the * Clipboard API is unavailable (e.g. Chrome blocking read access). */ declare const SessionStorageStrategy: { paste: () => Record | null; copy: (title: string, object: T, callbackFn: (val: T) => Promise) => Promise; }; export default SessionStorageStrategy;