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