/** * Read/update the value in localStorage, and keeping it in sync with other tabs. * @internal */ export declare const useStorageValue: (key: string, defaultValue: T) => readonly [T, (value: T) => void];