import { AxiosResponse, AxiosRequestConfig } from 'axios'; export interface YWRequestConfig extends AxiosRequestConfig { loginHost?: string; } export interface YWResponse extends AxiosResponse { config: YWRequestConfig; } export default class Request { static get(url: string, config?: YWRequestConfig): Promise; static post(url: string, data?: any, config?: YWRequestConfig): Promise; } //# sourceMappingURL=index.d.ts.map