import type { ZodError, ZodIssue } from 'zod';
export declare class HelpfulZodValidationError extends Error {
    details: ZodIssue[];
    props: any;
    domainObject: string;
    constructor({ error, props, domainObject, }: {
        error: ZodError;
        props: any;
        domainObject: string;
    });
}
