/** * Validation error thrown when invalid arguments are provided to repository methods. * * This error wraps Zod validation errors to hide the Zod dependency from users. * * @public */ export declare class ValidationError extends Error { /** * The name of the field that failed validation. */ readonly field: string; /** * Creates a new ValidationError. * * @param message - Human-readable error message * @param field - The name of the field that failed validation * @param options - Error options, including the original error cause for debugging */ constructor(message: string, field: string, options?: { cause?: Error; }); } //# sourceMappingURL=validation-error.d.ts.map