import { ContentElement } from '../../Primitives/Content/ContentElement'; import type { ICardContentElementProps } from './ICardContentElementProps'; declare const CardContentElement_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; /** * CardContent - A component that represents the content area of a card. * * @description This component is used to encapsulate the main content of a card, allowing for structured and visually distinct presentations of information within the card. * * @name CardContent * @element mosaik-card-content * @category UI Components * * @slot - The default slot for placing the main content within the card. * * @csspart contentText - The part representing the text content area of the card. * * @cssprop {String} --card-content-font-family - The content font family CSS custom property. * @cssprop {String} --card-content-font-letter-spacing - The content font letter spacing CSS custom property. * @cssprop {String} --card-content-font-line-height - The content font line height CSS custom property. * @cssprop {String} --card-content-font-size - The content font size CSS custom property. * @cssprop {String} --card-content-font-text-decoration - The content font text decoration CSS custom property. * @cssprop {String} --card-content-font-text-transform - The content font text transform CSS custom property. * @cssprop {String} --card-content-font-weight - The content font weight CSS custom property. * @cssprop {String} --card-content-gap - The gap property between elements in the card content. * @cssprop {String} --card-content-padding-bottom - The padding-bottom property for the card content. * @cssprop {String} --card-content-padding-left - The padding-left property for the card content. * @cssprop {String} --card-content-padding-right - The padding-right property for the card content. * @cssprop {String} --card-content-padding-top - The padding-top property for the card content. * @cssprop {String} --card-content-shadow - The content shadow CSS custom property. * @cssprop {String} --card-content-shadow-blur - The content shadow blur CSS custom property. * @cssprop {String} --card-content-shadow-color - The content shadow color CSS custom property. * @cssprop {String} --card-content-shadow-offset-x - The content shadow offset x CSS custom property. * @cssprop {String} --card-content-shadow-offset-y - The content shadow offset y CSS custom property. * @cssprop {String} --card-content-shadow-spread - The content shadow spread CSS custom property. * @cssprop {String} --card-content-transition-duration - The content transition duration CSS custom property. * @cssprop {String} --card-content-transition-mode - The content transition mode CSS custom property. * @cssprop {String} --card-content-transition-property - The content transition property CSS custom property. * @cssprop {String} --card-content-translate - The content translate CSS custom property. * * @dependency mosaik-text - The Text element. * * @example * Using the text property: * ```html * * ``` * * @example * With slotted content: * ```html * * * * ``` * * @public */ export declare class CardContentElement extends CardContentElement_base implements ICardContentElementProps { private _text; /** * @public */ constructor(); /** * Returns the `is` property. * The `is` property represents natural name of this element. * * @public * @static * @override * @readonly */ static get is(): string; /** * Gets or sets the `text` property. * * @public */ get text(): string; set text(value: string); /** * @protected * @override */ protected onApplyTemplate(): void; } /** * @public */ export declare namespace CardContentElement { type Props = ICardContentElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-card-content': CardContentElement; } } export {}; //# sourceMappingURL=CardContentElement.d.ts.map