import type { ValidationError } from 'yup'; export declare class HelpfulYupValidationError extends Error { details: string[]; props: any; domainObject: string; constructor({ error, props, domainObject, }: { error: ValidationError; props: any; domainObject: string; }); }