export interface IRadioButton { value: string; isDisabled: boolean; label: string; class: string; } export interface IRadioButtonConfig { heading: string; radioGroupName: string; radioButtons: IRadioButton[]; }