import { ContentElement } from '../../Primitives/Content/ContentElement'; import type { ICardSubTitleElementProps } from './ICardSubTitleElementProps'; declare const CardSubTitleElement_base: (abstract new (...args: Array) => import("../../../../Controls/Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/TextFormattable").ITextFormattableProps) & typeof ContentElement & import("../../../../Controls/Behaviors/Themeable").IThemeableCtor; /** * Card Sub Title - A component that represents the subtitle section of a card. * * @description This component is used to display the subtitle of a card, typically styled to differentiate it from the title and other content. It provides additional context or description for the card's main title. * * @name CardSubTitle * @element mosaik-card-sub-title * @category UI Components * * @slot - The default slot for placing the subtitle content. * * @cssprop {String} --card-sub-title-font-family - The font-family property for the card subtitle text. * @cssprop {String} --card-sub-title-font-size - The font-size property for the card subtitle text. * @cssprop {String} --card-sub-title-font-line-height - The line-height property for the card subtitle text. * @cssprop {String} --card-sub-title-font-weight - The font-weight property for the card subtitle text. * @cssprop {String} --card-sub-title-font-letter-spacing - The letter-spacing property for the card subtitle text. * @cssprop {String} --card-sub-title-font-text-decoration - The text-decoration property for the card subtitle text. * @cssprop {String} --card-sub-title-font-text-transform - The text-transform property for the card subtitle text. * @cssprop {Color} --card-sub-title-background-color - The background-color property for the card subtitle. * @cssprop {Color} --card-sub-title-border-color - The border-color property for the card subtitle. * @cssprop {Color} --card-sub-title-foreground-color - The foreground-color property for the card subtitle. * * @dependency {TextElement} - The Text element used for displaying the subtitle text. * * @example * Using text attribute: * ```html * * ``` * * @example * Using default slot with text content: * ```html * Premium Edition * ``` * * @public */ export declare class CardSubTitleElement extends CardSubTitleElement_base implements ICardSubTitleElementProps { private _text; /** * @public */ constructor(); /** * Returns the `is` property. * * @public * @static * @override * @readonly */ static get is(): string; /** * Gets or sets the `text` property. * * @public * @attr */ get text(): string; set text(value: string); /** * @protected * @override */ protected onApplyTemplate(): void; } /** * @public */ export declare namespace CardSubTitleElement { type Props = ICardSubTitleElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-card-sub-title': CardSubTitleElement; } } export {}; //# sourceMappingURL=CardSubTitleElement.d.ts.map