export declare class JobErrorResponse { private readonly _code; private readonly _message; private readonly _status; constructor(code: string, message: string, status: number); get code(): string; get message(): string; get status(): number; }