import { ElementRef, AfterViewInit } from '@angular/core'; import { FormGroup } from '@angular/forms'; import { RadioGroupService } from './radio-group.service'; export declare class RadioComponent implements AfterViewInit { private el; private _service; class: string; fg: FormGroup; field: string; label: string; disabled: boolean; nane: string; value: string; readonly groupName: string; constructor(el: ElementRef, _service: RadioGroupService); ngAfterViewInit(): void; check(): void; private _updateValue(); }