import { OnInit, OnDestroy } from '@angular/core'; import { Field } from 'ng-formly'; import { Http } from "@angular/http"; import { MdDialog } from '@angular/material'; export declare class FormlyRadioGroupComponent extends Field implements OnInit, OnDestroy { private http; dialog: MdDialog; private ngUnsubscribe; items: any[]; value: any; constructor(http: Http, dialog: MdDialog); ngOnInit(): void; changed(e: any): void; inputMapFn(e: any): any; outputMapFn(e: any): void; ngOnDestroy(): void; }