import type { IAppearanceableProps } from '../../../Behaviors/Appearanceable'; import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IElevatableProps } from '../../../Behaviors/Elevatable'; import type { IFitableProps } from '../../../Behaviors/Fitable'; import type { IRippleableProps } from '../../../Behaviors/Rippleable'; import type { IThemeableProps } from '../../../Behaviors/Themeable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; import { ButtonType } from '../../../Types/ButtonType'; /** * Represents the `ITileElementProps` interface. * * @public */ export interface ITileElementProps extends IAppearanceableProps, IDisableableProps, IElevatableProps, IFitableProps, IRippleableProps, IVariantableProps, IThemeableProps { type: ButtonType; } //# sourceMappingURL=ITileElementProps.d.ts.map