import { PropertyValidator } from "../PropertyValidator";
export declare class HasMinNumberOfElementsValidator implements PropertyValidator<Iterable<any>> {
    private minElementCount;
    constructor(minElementCount: number);
    isValid(input: Iterable<any> | undefined): boolean;
}
