export interface RadioOption {
    value: any;
    label: string;
    disabled?: boolean;
}
