import { type ISlottable } from '../../../Behaviors/Slottable'; import { CustomElement } from '../../Abstracts/CustomElement'; import type { ICardHeaderElementProps } from './ICardHeaderElementProps'; declare const CardHeaderElement_base: (abstract new (...args: Array) => import("../../../../Controls/Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/TextFormattable").ITextFormattableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Slottable").ISlottableProps & ISlottable) & typeof CustomElement & import("../../../../Controls/Behaviors/Themeable").IThemeableCtor; /** * CardHeader - A component that represents the header section of a card. * * @description This component is used to display the header content of a card, typically containing the title and subtitle. It provides a structured layout for the main information presented in the card. * * @name CardHeader * @element mosaik-card-header * @category UI Components * * @slot prefix - The slot for placing prefix content (e.g., icons). * @slot header - The slot for placing the main header content. * @slot subHeader - The slot for placing sub-header content. * @slot - The default slot for placing additional content within the header. * @slot suffix - The slot for placing suffix content (e.g., buttons or icons). * * @csspart heading - The part representing the heading area of the card header. * * @cssprop {String} --card-header-padding-top - The padding-top property for the card header. * @cssprop {String} --card-header-padding-right - The padding-right property for the card header. * @cssprop {String} --card-header-padding-bottom - The padding-bottom property for the card header. * @cssprop {String} --card-header-padding-left - The padding-left property for the card header. * @cssprop {String} --card-header-gap - The gap property between elements in the card header. * * @dependency {CardTitleElement} - The Card Title element used within the header. * @dependency {CardSubTitleElement} - The Card Sub Title element used within the header. * * @example * Using text properties: * ```html * * ``` * * @example * Full header anatomy using all slots: * ```html * * * * * * * ``` * * @public */ export declare class CardHeaderElement extends CardHeaderElement_base implements ICardHeaderElementProps, ISlottable { private _text; private _subText; /** * @public */ constructor(); /** * Returns the `is` property. * The `is` property represents natural name of this element. * * @public * @static * @readonly */ static get is(): string; /** * Gets or sets the `text` property. * * @public */ get text(): string; set text(value: string); /** * Gets or sets the `subText` property. * * @public */ get subText(): string; set subText(value: string); /** * @protected * @override */ protected onApplyTemplate(): void; } /** * @public */ export declare namespace CardHeaderElement { type Props = ICardHeaderElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-card-header': CardHeaderElement; } } export {}; //# sourceMappingURL=CardHeaderElement.d.ts.map