export declare class ErrorResponse {
    respCode: string;
    respMsg: string;
    constructor(respCode: string, respMsg: string);
}
