import type { ISlottableProps } from '../../../Behaviors/Slottable'; import type { ITextFormattableProps } from '../../../Behaviors/TextFormattable'; /** * Represents the `ICardHeaderElementProps` interface. * * @public */ export interface ICardHeaderElementProps extends ITextFormattableProps, ISlottableProps { readonly text: string; readonly subText: string; } //# sourceMappingURL=ICardHeaderElementProps.d.ts.map