/** * Uses the [Navigator online API](https://developer.mozilla.org/en-US/docs/Web/API/NavigatorOnLine/onLine) to define * whether the browser is connected or not. */ declare const useOnlineState: () => boolean; export default useOnlineState;