import { OnInit, OnChanges, SimpleChanges } from '@angular/core';
import { Validator, AbstractControl } from '@angular/forms';
import * as i0 from "@angular/core";
export declare class PropertyValidator implements Validator, OnInit, OnChanges {
    property: string;
    private validator;
    private onChange;
    ngOnInit(): void;
    ngOnChanges(changes: SimpleChanges): void;
    validate(c: AbstractControl): {
        [key: string]: any;
    };
    registerOnValidatorChange(fn: () => void): void;
    static ɵfac: i0.ɵɵFactoryDeclaration<PropertyValidator, never>;
    static ɵdir: i0.ɵɵDirectiveDeclaration<PropertyValidator, "[property][formControlName],[property][formControl],[property][ngModel]", never, { "property": { "alias": "property"; "required": false; }; }, {}, never, never, false, never>;
}
