import { UseStorageOptions, UseStorageReturnValue } from './create-storage'; export declare function useLocalStorage(props: UseStorageOptions & { defaultValue: T; }): UseStorageReturnValue; export declare function useLocalStorage(props: UseStorageOptions): UseStorageReturnValue; interface ReadStorageValue { (options: UseStorageOptions & { defaultValue: T; }): T; (options: UseStorageOptions): T | undefined; } export declare const readLocalStorageValue: ReadStorageValue; export {};