export declare const useStateWithWebStorage: <T>(webStorage: Storage, webStorageKey: string, initialValue: T) => [T, (value: T) => void, boolean];
export declare const useStateWithSessionStorage: <T>(key: string, initialValue: T) => [T, (value: T) => void, boolean];
export declare const useStateWithLocalStorage: <T>(key: string, initialValue: T) => [T, (value: T) => void, boolean];
