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