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