import { RadioGroupComponent } from './radio-group.component'; import * as i0 from "@angular/core"; /** * @author pweyrich * @description This component is a wrapper for HTML5's native element including a corresponding element. * It must be used within a hosting element! */ export declare class RadioInputComponent { _group: RadioGroupComponent; /** * The radio input's label */ label: string; /** * The value related to this radio input */ value: any; /** * The input is disabled if set to true * @default false */ disabled: boolean; /** * unique identifier of this input instance */ readonly _id: string; constructor(_group: RadioGroupComponent); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }