export type ValidatorsRunnerErrorCode = 'VALIDATORS_RUNNER_ERROR' | 'INVALID_INPUT' | 'OPERATION_FAILED'; export interface ValidatorsRunnerErrorOptions { cause?: Error; code?: ValidatorsRunnerErrorCode; context?: Record; } export declare class ValidatorsRunnerError extends Error { readonly code: ValidatorsRunnerErrorCode; readonly context?: Record; constructor(message: string, options?: ValidatorsRunnerErrorOptions); } //# sourceMappingURL=errors.d.ts.map