export type ExpertiseOptionType = {
  id: number;
  uuid: string;
  label: string;
  name: string;
};

export type ExpertiseOptionValue = {
  selectedOptions: string[];
  expertise: string;
};
