import { CustomElement } from '../../Abstracts/CustomElement'; import type { ICalendarSubHeaderElementProps } from './ICalendarSubHeaderElementProps'; declare const CalendarSubHeaderElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Disableable").IDisableableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * Calendar Sub Header - A secondary heading or descriptive text displayed below calendar headers. * * @description * The Calendar Sub Header component provides additional contextual information or descriptions * within calendar interfaces. It is typically used to display day-of-week labels, supplementary * text, or formatting instructions below the main calendar header. The component supports custom * styling, disabled states, and text wrapping for longer content. It complements the Calendar * Header to create clear, hierarchical calendar layouts. * * @name Calendar Sub Header * @element mosaik-calendar-sub-header * @category Inputs * * @slot subHeader - The default slot for custom sub-header content * * @csspart subHeader - The container element wrapping the sub-header content * * @cssprop {String} --calendar-sub-header-background-color - The background color of the sub-header * @cssprop {String} --calendar-sub-header-foreground-color - The text color of the sub-header * @cssprop {String} --calendar-sub-header-border-color - The border color * @cssprop {String} --calendar-sub-header-border-width - The border thickness * @cssprop {String} --calendar-sub-header-border-style - The border line style * @cssprop {String} --calendar-sub-header-border-radius - The corner rounding radius * @cssprop {String} --calendar-sub-header-font - The shorthand font property * @cssprop {String} --calendar-sub-header-font-size - The font size for sub-header text * @cssprop {String} --calendar-sub-header-font-weight - The font weight for sub-header text * @cssprop {String} --calendar-sub-header-line-height - The line height for sub-header text * * @dependency {TextElement} - Text rendering component for sub-header labels * * @example * Basic calendar sub-header: * ```html * * ``` * * @example * Day-of-week labels as sub-header: * ```html * * ``` * * @example * Custom content via slot: * ```html * * * * ``` * * @public */ export declare class CalendarSubHeaderElement extends CalendarSubHeaderElement_base implements ICalendarSubHeaderElementProps { private _text; /** * @public */ constructor(); /** * Returns the `is` property. * * @public * @static * @readonly */ static get is(): string; /** * Gets or sets the `text` property. * * @public * @attr */ get text(): string; set text(value: string); } /** * @public */ export declare namespace CalendarSubHeaderElement { type Props = ICalendarSubHeaderElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-calendar-sub-header': CalendarSubHeaderElement; } } export {}; //# sourceMappingURL=CalendarSubHeaderElement.d.ts.map