/** * Fetch a set of keys from storage to include with metadata */ declare function getStorageMetadata(storage: Storage | null, keys?: string[] | null): Record | null; declare const localStorageInfo: (keys?: string[] | null) => { name: string; func: () => Record | null; async: boolean; static: boolean; }; declare const sessionStorageInfo: (keys?: string[] | null) => { name: string; func: () => Record | null; async: boolean; static: boolean; }; export { getStorageMetadata, localStorageInfo, sessionStorageInfo };