type StorageTuple = [T, (next: T) => void]; /** * Just like useState but gets/sets the value in the browser's local storage. * 'key' should be a constant string. 'initialValue' is returned when local * storage does not have any data yet. */ export declare function useLocalStorage(key: string, initialValue: T): StorageTuple; export {}; //# sourceMappingURL=browser-storage.d.ts.map