import { ValidatorFn } from "@angular/forms";
/**
 * Accepts a validator and a quantity.
 * Applies the validator and checks if at least n fields of the formGroup are valid
 * @param validator
 * @param howMany
 */
export declare function xmatValidatorForAtLeast(validator: ValidatorFn, howMany?: number): ValidatorFn;
