import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { ISizeableProps } from '../../../Behaviors/Sizeable'; import type { ISlottableProps } from '../../../Behaviors/Slottable'; /** * Represents the `IActionbarItemElementProps` interface. * * @public */ export interface IActionbarItemElementProps extends IDisableableProps, ISizeableProps, ISlottableProps { active: boolean; selected: boolean; grow: boolean; shrink: boolean; } //# sourceMappingURL=IActionbarItemElementProps.d.ts.map