export declare class RobotError extends Error { static ErrorCode: { readonly CAPTCHA_RESOLVE: 800; readonly CREDENTIAL_ERROR: 999; readonly NAVIGATION_ERROR: 905; readonly EMPTY_FILE: 902; readonly DATA_UNAVAILABLE: 903; readonly INVALID_RESOURCE: 904; readonly UNKNOWN_ERROR: 901; }; static errorMessages: { [key in keyof typeof RobotError.ErrorCode]: string; }; errorCode: number; errorMessage: string; reference?: string; msgError?: string; constructor(errorCode: keyof typeof RobotError.ErrorCode, reference?: string, msgError?: string); } //# sourceMappingURL=robot-error.d.ts.map