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