import { FormControl } from '@angular/forms';
/**
 * A custom validator to compare two fields. This is internally to support the infrastructure
 * and not intended to being used by custom code.
 *
 * @param p The field's name
 *
 */
export declare function validateCompare(p: string): (c: FormControl) => {
    compare: {
        valid: boolean;
    };
};
