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