export type CollapseIconPosition = 'left' | 'right'; export type CollapseExpansionDirection = 'down' | 'up' | 'right' | 'left'; export type CollapseColorMode = 'light' | 'dark'; export type CollapseTriggerVariant = 'surface' | 'button' | 'text'; export interface CollapseChangeDetail { accordionGroup: string; id: string; }