import { AfterViewInit, OnDestroy } from '@angular/core'; import { FormControl, FormGroup } from '@angular/forms'; import { Subscription } from 'rxjs/Subscription'; import { BehaviorSubject } from 'rxjs/BehaviorSubject'; export interface option { value: string; label: string; } export declare class MultiRadioComponent implements OnDestroy, AfterViewInit { _options: option[]; _value: BehaviorSubject; _model: FormControl; _form: FormGroup; _subscribers: Subscription[]; inline: boolean; options: any[]; constructor(); ngAfterViewInit(): void; writeValue(val: any): void; onChange: Function; onTouched: Function; registerOnChange(fn: Function): void; registerOnTouched(fn: Function): void; ngOnDestroy(): void; }