import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IFitableProps } from '../../../Behaviors/Fitable'; import type { IOrientableProps } from '../../../Behaviors/Orientable'; import type { ISizeableProps } from '../../../Behaviors/Sizeable'; import type { ISlottableProps } from '../../../Behaviors/Slottable'; import type { Overflow } from '../../../Types/Overflow'; /** * Represents the `IActionbarElementProps` interface. * * @public */ export interface IActionbarElementProps extends IOrientableProps, ISizeableProps, IDisableableProps, IFitableProps, ISlottableProps { overflow: Overflow; wrap: boolean; } //# sourceMappingURL=IActionbarElementProps.d.ts.map