export type MenuLayoutGroup = { key: string; title: string; itemIds: ReadonlyArray; }; export type MenuLayoutItem = { id: string; action: Action; }; export type MenuLayoutResolvedGroup = { key: string; title: string; items: ReadonlyArray>; };