export default class ErrorPayload {
    private readonly _code;
    private readonly _type;
    private readonly _message;
    constructor(responseObj: any);
    get code(): number;
    get type(): string;
    get message(): string;
}
