import type { IBusyableProps } from '../../../Behaviors/Busyable'; import type { ICheckableProps } from '../../../Behaviors/Checkable'; 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 `IToggleButtonElementProps` interface. * * @public */ export interface IToggleButtonElementProps extends IButtonBaseElementProps, IOrientableProps, IContentAlignableProps, IFitableProps, IBusyableProps, IReversibleProps, ICheckableProps, ILabelableProps, IIconableProps, IThemeableProps { } //# sourceMappingURL=IToggleButtonElementProps.d.ts.map