/**
 * Created by jayhamilton on 2/5/17.
 */
import { AfterViewInit } from '@angular/core';
import { FormGroup } from '@angular/forms';
import { PropertyBase } from './property-base';
export declare class DynamicFormPropertyComponent implements AfterViewInit {
    property: PropertyBase<any>;
    form: FormGroup;
    gadgetTags: any[];
    endPoints: string[];
    constructor();
    get isValid(): boolean;
    updateEndPointList(): void;
    ngAfterViewInit(): void;
}
