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 { IInsetableProps } from '../../../Behaviors/Insetable'; import type { IOrientableProps } from '../../../Behaviors/Orientable'; import type { ISlottableProps } from '../../../Behaviors/Slottable'; import type { ITextFormattableProps } from '../../../Behaviors/TextFormattable'; import type { IThemeableProps } from '../../../Behaviors/Themeable'; import type { ISelectableProps } from '../../../Behaviors/Selectable'; /** * Represents the `ICardElementProps` interface. * * @public * */ export interface ICardElementProps extends IInsetableProps, IAppearanceableProps, IDisableableProps, IFitableProps, IElevatableProps, IOrientableProps, ITextFormattableProps, ISlottableProps, ISelectableProps, IThemeableProps { header: string; subHeader: string; content: string; inlineMedia: boolean; } //# sourceMappingURL=ICardElementProps.d.ts.map