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