import { DATA_RESPONSE_STATUS, DATA_RESPONSE_STATUS_MESSAGES } from '../data'; interface ResponseBody { code: ThatStatus; result: boolean; msg: string; rows?: R; data?: { [key: string]: any; }; fileName?: string; } interface ThatAxiosResponse { DATA: R; STATUS: ThatStatus; } declare class ThatStatus { private readonly _code; constructor(code?: DATA_RESPONSE_STATUS); get message(): string; get code(): DATA_RESPONSE_STATUS; } export { ResponseBody, ThatAxiosResponse, DATA_RESPONSE_STATUS_MESSAGES, ThatStatus };