export type Group = {
  id: string;
  ref: React.RefObject<HTMLElement>;
};

export type Item = {
  id: string | null;
  ref: React.RefObject<HTMLElement>;
  groupId?: Group["id"];
  disabled?: boolean;
  value?: string;
};
