import type { Dispatch, SetStateAction } from 'react'; import type { UseStorageOptions } from './useStorage.ts'; /** Custom hook that uses session storage to persist state across page reloads */ export declare function useSessionStorage(key: string, initialValue: (() => T) | T, options?: UseStorageOptions): [T, Dispatch>]; //# sourceMappingURL=useSessionStorage.d.ts.map