import { IPropValidator } from '../IPropValidator'; /** * Validates enum constraints */ export declare class EnumValidator implements IPropValidator { /** * Validates if value is in enum list * @param value The value to validate * @param rules Validation rules * @param propName Name of the property */ validate(value: any, rules: Record | undefined, propName: string): string[]; } //# sourceMappingURL=EnumValidator.d.ts.map