import type { UseStorageValueOptions, UseStorageValueResult } from '../useStorageValue/index.js'; type UseLocalStorageValue = (key: string, options?: UseStorageValueOptions) => UseStorageValueResult; /** * Manages a single localStorage key. */ export declare const useLocalStorageValue: UseLocalStorageValue; export {};