import { UseRequestOptions } from '../index';
import { UseAxiosParams } from './types';
export declare function useAxios<R = any, P extends any[] = any>(params: UseAxiosParams<P>, options?: Partial<UseRequestOptions<R, P>>): import("..").UseRequestResult<R | undefined, P>;