import type { IAppearanceableProps } from '../../../Behaviors/Appearanceable'; import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IOrientableProps } from '../../../Behaviors/Orientable'; import type { ISlottableProps } from '../../../Behaviors/Slottable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; /** * Represents the `IButtonGroupElementProps` interface. * * @public */ export interface IButtonGroupElementProps extends IDisableableProps, IOrientableProps, IVariantableProps, IAppearanceableProps, ISlottableProps { } //# sourceMappingURL=IButtonGroupElementProps.d.ts.map