export type RadioItem = {
    name: string | number;
    label?: string | null;
    disabled?: boolean;
  }
