import type { AxiosResponse } from 'axios'; /** * 兼容3种数据结构 * error对象,axios原始返回值,菜鸟标准数据结构 */ export declare const getErrorMsg: (error: AxiosResponse | Error | unknown, defaultErrorMsg?: string) => string | undefined;