export type Option = {
  label: string;
  value: string;
  exclusive?: boolean;
  image?: null | {
    src: string;
  };
};
