export type IRadioDataSource = Array<{
    label?: string;
    value?: any;
    disabled?: boolean;
    checked?: boolean;
}> | string[] | number[];
