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-padding-top - The padding-top property for the card content. * @cssprop {String} --card-content-padding-right - The padding-right property for 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-gap - The gap property between elements in the card content. * * @dependency {TextElement} - The Text element used for displaying the content text. * * @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