declare type ResponseType = ResponseData | ResponseNormalError | ResponseFormError; export default class ResponseProxy { static SUCCESS: string; static FAIL: string; static UNLOAD: string; static LOADING: string; private response; private state; private timesteamp; constructor(response?: ResponseType, dataAdaptor?: any, dataAdaptorConfig?: any); getResponseData: () => T; isSuccess: () => boolean; getState: () => string; getErrorCode: () => string; getErrorMsg: () => string; getTimesteamp: () => number; } export {};