import { ZodError } from 'zod'; /** * Error class for data validation failures using Zod schemas. * Provides detailed information about which properties failed validation and why. */ export declare class ValidationError extends Error { /** Formatted error message with validation details */ readonly error: string; /** * Creates a new validation error from a Zod error. * @param zodError - The Zod validation error containing issue details * @param object - The object that failed validation */ constructor(zodError: ZodError, object: any); } //# sourceMappingURL=validation-error.d.ts.map