import { FormDataOptions, RequestOptions, AxiosResponse } from './common';
/**
 * Transform request query
 */
export declare const transformQuery: (url: string, query: any) => string;
/**
 * Fast create an http or https request.
 */
export declare const fastRequest: <T = any>(options: RequestOptions) => Promise<AxiosResponse<T>>;
/**
 * Fast create an http or https form-data request.
 */
export declare const fastFormData: <T = any>(options: FormDataOptions) => Promise<AxiosResponse<T>>;
