import { ContentElement } from '../../Primitives/Content/ContentElement'; import type { ICardTitleElementProps } from './ICardTitleElementProps'; declare const CardTitleElement_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; /** * CardTitle - A component that represents the title section of a card. * * @description This component is used to display the title of a card, often styled to stand out from other content. It provides a clear heading for the information contained within the card. * * @name CardTitle * @element mosaik-card-title * @category UI Components * * @slot - The default slot for placing the title content. * * @cssprop {String} --card-title-font-family - The font-family property for the card title text. * @cssprop {String} --card-title-font-size - The font-size property for the card title text. * @cssprop {String} --card-title-font-line-height - The line-height property for the card title text. * @cssprop {String} --card-title-font-weight - The font-weight property for the card title text. * @cssprop {String} --card-title-font-letter-spacing - The letter-spacing property for the card title text. * @cssprop {String} --card-title-font-text-decoration - The text-decoration property for the card title text. * @cssprop {String} --card-title-font-text-transform - The text-transform property for the card title text. * @cssprop {Color} --card-title-background-color - The background-color property for the card title. * @cssprop {Color} --card-title-border-color - The border-color property for the card title. * @cssprop {Color} --card-title-foreground-color - The foreground-color property for the card title. * * @dependency {TextElement} - The Text element used for displaying the title text. * * @example * Using text attribute: * ```html * * ``` * * @example * Using default slot with text content: * ```html * Product Name * ``` * * @public */ export declare class CardTitleElement extends CardTitleElement_base implements ICardTitleElementProps { 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 CardTitleElement { type Props = ICardTitleElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-card-title': CardTitleElement; } } export {}; //# sourceMappingURL=CardTitleElement.d.ts.map