import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { ILabelableProps } from '../../../Behaviors/Labelable'; import type { ISizeableProps } from '../../../Behaviors/Sizeable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; import type { Size } from '../../../Types/Size'; /** * Represents the `IRibbonElementProps` interface. * * @public */ export interface IRibbonElementProps extends ISizeableProps, IVariantableProps, IDisableableProps, ILabelableProps { icon: string; iconSize: Size | null; } //# sourceMappingURL=IRibbonElementProps.d.ts.map