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