/** @packageDocumentation * @module Item */ import { StringGetter } from "@bentley/ui-abstract"; import { Direction } from "@bentley/ui-ninezone"; import { AnyItemDef } from "./AnyItemDef"; import { ItemProps } from "./ItemProps"; /** Definition for a Group item that opens a group of items. * @public */ export interface GroupItemProps extends ItemProps { defaultActiveItemId?: string; groupId?: string; items: AnyItemDef[]; direction?: Direction; itemsInColumn?: number; /** if set, it is used to explicitly set a label at top of open group component. */ panelLabel?: string | StringGetter; /** if set, it is used to define a key that is used to look up a localized string. This value is used only if panelLabel is not explicitly set. */ panelLabelKey?: string; } //# sourceMappingURL=GroupItemProps.d.ts.map