import { EventEmitter, OnInit } from "@angular/core"; import * as i0 from "@angular/core"; export interface RadioChoicesInterface { key: string; value: string; } export declare class RadioComponent implements OnInit { label: string; isInline: boolean; checkedIndex: number; onRadioChange: EventEmitter<{ key: string; index: number; }>; choices: RadioChoicesInterface[]; id: string; constructor(); ngOnInit(): void; inputChanged(key: string, index: number): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }