import type { IBusyableProps } from '../../../Behaviors/Busyable'; import type { IContentAlignableProps } from '../../../Behaviors/ContentAlignable'; import type { IFitableProps } from '../../../Behaviors/Fitable'; import type { IIconableProps } from '../../../Behaviors/Iconable'; import type { ILabelableProps } from '../../../Behaviors/Labelable'; import type { IOrientableProps } from '../../../Behaviors/Orientable'; import type { IReversibleProps } from '../../../Behaviors/Reversible'; import type { IThemeableProps } from '../../../Behaviors/Themeable'; import type { IButtonBaseElementProps } from '../Abstracts/IButtonBaseElementProps'; /** * Represents the `ICompoundButtonElementProps` interface. * * @public */ export interface ICompoundButtonElementProps extends IButtonBaseElementProps, IOrientableProps, IContentAlignableProps, IFitableProps, IBusyableProps, IReversibleProps, ILabelableProps, IIconableProps, IThemeableProps { subLabel: string; isNavigation: boolean; } //# sourceMappingURL=ICompoundButtonElementProps.d.ts.map