import { ControlValueAccessor } from '@angular/forms'; import { LaRadioGroupOptionInterface } from './la-radio-group-option.interface'; export declare class LaRadioGroupComponent implements ControlValueAccessor { onChange: Function; onTouch: Function; private _optionsMap; private _value; private _options; options: LaRadioGroupOptionInterface[]; registerOnChange(fn: any): void; registerOnTouched(fn: any): void; setDisabledState(isDisabled: boolean): void; writeValue(newValue: any): void; onBtnSelected(value: any): void; onBtnDeselected(value: any): void; /** * * @param exceptThisOne this is the .value of the option */ private _deselectAllButtons(exceptThisOne); }