import { ElementRef, EventEmitter, TemplateRef } from '@angular/core'; import { InputLabelComponent } from '../input-label/input-label.component'; import * as i0 from "@angular/core"; export declare class RadioComponent { name?: string; identifier?: string; value?: string; checked?: boolean; size?: RadioComponent.Size; title?: string; subtitle?: string; labelTemplate?: TemplateRef<{ checked: boolean; }>; disabled: boolean; required: boolean; state: InputLabelComponent.State; errorMessage: string; checkedChange: EventEmitter; label?: ElementRef; isRadioOnly(): boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare namespace RadioComponent { const Sizes: readonly ["medium", "large"]; type Size = (typeof Sizes)[number]; }