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