import { Renderer2, ElementRef } from '@angular/core'; import { AvBase } from '../shared/base'; import { AvRadioGroupService } from './radio-group.service'; export declare class AvRadioButtonComponent extends AvBase { private radioGroupService; value: string; name: string; private subscription; private _selected; get selected(): boolean; set selected(newValue: boolean); constructor(radioGroupService: AvRadioGroupService, renderer: Renderer2, element: ElementRef); }