import { AxiosRequestConfig, Method } from 'axios'; interface YCommonOptions { url: string; method?: Method | string; options?: AxiosRequestConfig; hasCommonParams?: boolean; } declare const _default: ({ url, method, options, hasCommonParams }: YCommonOptions) => Promise>; export default _default;