export type SetLocalStorageValue = (value: T | ((val: T) => T)) => void; /** * Hook for storing information to LocalStorage. Note that if you use this same * hook in multiple component instances, these will *not* share state! If you * want that behavior, you should use this hook inside a Context object. */ export declare function useLocalStorage(key: string, initialValue: T): [T, SetLocalStorageValue]; //# sourceMappingURL=useLocalStorage.d.ts.map