declare const _default: () => boolean;
/**
* Get the loading status, i.e. a boolean indicating if at least one request is pending
*
* @see useLoad
*
* @example
*
* import { useLoading } from '../app';
*
* const MyComponent = () => {
* const loading = useLoading();
* return loading ? : ;
* }
*/
export default _default;