import { ValidationError } from './validation_error.js'; /** * Factory constant for creating ValidationError instances. * This is the main export for creating validation errors in the Vine validation library. * * @example * throw new E_VALIDATION_ERROR(errors) * * @example * const error = new E_VALIDATION_ERROR({ * field: 'username', * message: 'Username is required' * }) */ export declare const E_VALIDATION_ERROR: typeof ValidationError;