import { AbstractControl } from '@angular/forms';
import { FormProperty } from './form-property';
export declare type Constructor<T> = new (...args: any[]) => T;
export declare function ControlProperty<T extends Constructor<AbstractControl>>(Base: T): T & Constructor<FormProperty>;
