import { ControlValueAccessor } from '@angular/forms'; export declare class RadioComponent implements ControlValueAccessor { /** * The name of the radio button */ name: string; /** * The checked value of the radio button */ checked: boolean; /** * The disablement of the radio button */ disabled: boolean; /** * The value of the radio button for use on selection within a radio group */ value: any; /** * AUTOGENERATED * This is an auto-generated form-field ID */ id: string; /** * @ignore */ onChange: (checked: boolean) => void; /** * @ignore */ onTouch: () => void; /** * @ignore */ registerOnChange(fn: (checked: boolean) => void): void; /** * @ignore */ registerOnTouched(fn: () => void): void; /** * @ignore */ setDisabledState(isDisabled: boolean): void; /** * @ignore */ writeValue(value: any): void; }