import { ElementRef } from '@angular/core'; import { FormControl } from '@angular/forms'; export declare abstract class FormFieldComponent { elementRef: ElementRef; property: string; title: string; required: boolean; requiredText: string; compare: string; disabled: boolean; visible: boolean; defaultValue: string; parse(value: any): any; control: FormControl; onVisibilityChange: () => void; submitted: boolean; private _defaultValue; private _disabled; private _visible; constructor(elementRef: ElementRef); }