import type { IAppearanceableProps } from '../../../Behaviors/Appearanceable'; import type { ISlottableProps } from '../../../Behaviors/Slottable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; import type { ExpandDirection } from '../../../Types/ExpandDirection'; import type { ExpanderGroupStacking } from '../../../Types/ExpanderGroupStacking'; import type { ExpansionMode } from '../../../Types/ExpansionMode'; /** * Represents the `IExpanderGroupElementProps` interface. * * @public */ export interface IExpanderGroupElementProps extends IAppearanceableProps, IVariantableProps, ISlottableProps { mode: ExpansionMode; direction: ExpandDirection; stacking: ExpanderGroupStacking; } //# sourceMappingURL=IExpanderGroupElementProps.d.ts.map