import type { IAppearanceableProps } from '../../../Behaviors/Appearanceable'; import type { ICloseableProps } from '../../../Behaviors/Closeable'; import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IIconableProps } from '../../../Behaviors/Iconable'; import type { ILabelableProps } from '../../../Behaviors/Labelable'; import type { ISlottableProps } from '../../../Behaviors/Slottable'; import type { IThemeableProps } from '../../../Behaviors/Themeable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; import type { FabGroupDirection } from '../../../Types/FabGroupDirection'; /** * Represents the `IFloatingActionButtonGroupElementProps` interface. * * @public */ export interface IFloatingActionButtonGroupElementProps extends IDisableableProps, ICloseableProps, IVariantableProps, IAppearanceableProps, ILabelableProps, IIconableProps, IThemeableProps, ISlottableProps { isOpen: boolean; direction: FabGroupDirection; } //# sourceMappingURL=IFloatingActionButtonGroupElementProps.d.ts.map