import { LocalStorageOptions } from '../types'; /** * React hook for localStorage with state synchronization * @param key - The localStorage key * @param initialValue - The initial value if key doesn't exist * @param options - Storage options * @returns [value, setValue, removeValue] */ export declare function useLocalStorage(key: string, initialValue: T, options?: LocalStorageOptions): [T, (value: T | ((prev: T) => T)) => void, () => void]; //# sourceMappingURL=useLocalStorage.d.ts.map