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 {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 {String} --card-title-font-family - The font-family 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-line-height - The line-height 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-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 {String} --card-title-font-weight - The font-weight property for the card title text. * @cssprop {Color} --card-title-foreground-color - The foreground-color property for the card title. * @cssprop {String} --card-title-gap - The title gap CSS custom property. * @cssprop {String} --card-title-padding-bottom - The title padding bottom CSS custom property. * @cssprop {String} --card-title-padding-left - The title padding left CSS custom property. * @cssprop {String} --card-title-padding-right - The title padding right CSS custom property. * @cssprop {String} --card-title-padding-top - The title padding top CSS custom property. * @cssprop {String} --card-title-shadow - The title shadow CSS custom property. * @cssprop {String} --card-title-shadow-blur - The title shadow blur CSS custom property. * @cssprop {String} --card-title-shadow-color - The title shadow color CSS custom property. * @cssprop {String} --card-title-shadow-offset-x - The title shadow offset x CSS custom property. * @cssprop {String} --card-title-shadow-offset-y - The title shadow offset y CSS custom property. * @cssprop {String} --card-title-shadow-spread - The title shadow spread CSS custom property. * @cssprop {String} --card-title-transition-duration - The title transition duration CSS custom property. * @cssprop {String} --card-title-transition-mode - The title transition mode CSS custom property. * @cssprop {String} --card-title-transition-property - The title transition property CSS custom property. * @cssprop {String} --card-title-translate - The title translate CSS custom property. * * @dependency mosaik-text - The Text element. * * @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