export type Group = { id: string; ref: React.RefObject; }; export type Item = { id: string | null; ref: React.RefObject; groupId?: Group["id"]; disabled?: boolean; }; export type Orientation = "horizontal" | "vertical";