export interface ReqConfigProps { timeout?: number; baseURL?: string; errorConfig?: { errorHandler?: (error: any, opts: any) => void; errorThrower?: (err: any) => void; }; authorization?: string; showMsg?: boolean; } export declare const reqConfig: (config: ReqConfigProps) => { timeout: number; baseURL: string; errorConfig: { errorHandler?: ((error: any, opts: any) => void) | undefined; errorThrower?: ((err: any) => void) | undefined; }; authorization?: string | undefined; showMsg?: boolean | undefined; requestInterceptors: (((url: any, options: any) => { url: any; options: any; }) | ((error: any) => Promise))[][]; responseInterceptors: ((response: { status: number; data: any; }) => any)[][]; };