import { AxiosResponse } from 'axios'; import { UseAsyncCallbackOptions, UseAsyncReturn } from 'react-async-hook'; declare const apiAxios: import("axios").AxiosInstance; declare type MaybePromise = Promise | T; declare type AsyncApiCallback = (asyncFunction: (...args: Args) => MaybePromise>, options?: UseAsyncCallbackOptions) => UseAsyncReturn; declare const useApiCallback: AsyncApiCallback; export { useApiCallback }; export default apiAxios;