import { IPropValidator } from './IPropValidator'; /** * Factory for creating property validators */ export declare class PropValidatorFactory { private static validators; /** * Gets a validator for the specified type * @param type The property type * @returns The validator instance */ static getValidator(type: string): IPropValidator; } //# sourceMappingURL=PropValidatorFactory.d.ts.map