import { ProviderSourceConfig, runTimeType } from '../../../types'; import { AsyncAdaptor, AsyncAdaptorRetValue } from '../adaptors/async'; import { AxiosRequestConfig } from 'axios'; declare type AjaxConfig = AxiosRequestConfig & { keepEmptyData?: boolean; }; export declare class AjaxAdaptor extends AsyncAdaptor { exec(config: AjaxConfig, provider: ProviderSourceConfig, runTime: runTimeType): Promise; } export {};