declare function useLocalStorage(key: string, defaultValue?: any, options?: { isJSON?: boolean; }): import('./types').WebStorageStateHookInterface; declare namespace useLocalStorage { function keys(): string[]; } export default useLocalStorage; export type WebStorageStateHookInterface = import('./types').WebStorageStateHookInterface;