import { IPropValidator } from '../IPropValidator'; /** * Validates number properties */ export declare class NumberValidator implements IPropValidator { /** * Validates a number value * @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=NumberValidator.d.ts.map