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 * * @cssprop {String} --calendar-sub-header-background-color - The background color of the sub-header * @cssprop {String} --calendar-sub-header-border-color - The border color * @cssprop {String} --calendar-sub-header-border-radius - The corner rounding radius * @cssprop {String} --calendar-sub-header-border-style - The border line style * @cssprop {String} --calendar-sub-header-border-width - The border thickness * @cssprop {String} --calendar-sub-header-font - The shorthand font property * @cssprop {String} --calendar-sub-header-font-family - The sub header font family CSS custom property. * @cssprop {String} --calendar-sub-header-font-letter-spacing - The sub header font letter spacing CSS custom property. * @cssprop {String} --calendar-sub-header-font-line-height - The sub header font line height CSS custom property. * @cssprop {String} --calendar-sub-header-font-size - The font size for sub-header text * @cssprop {String} --calendar-sub-header-font-text-decoration - The sub header font text decoration CSS custom property. * @cssprop {String} --calendar-sub-header-font-text-transform - The sub header font text transform CSS custom property. * @cssprop {String} --calendar-sub-header-font-weight - The font weight for sub-header text * @cssprop {String} --calendar-sub-header-foreground-color - The text color of the sub-header * @cssprop {String} --calendar-sub-header-gap - The sub header gap CSS custom property. * @cssprop {String} --calendar-sub-header-line-height - The line height for sub-header text * @cssprop {String} --calendar-sub-header-padding-bottom - The sub header padding bottom CSS custom property. * @cssprop {String} --calendar-sub-header-padding-left - The sub header padding left CSS custom property. * @cssprop {String} --calendar-sub-header-padding-right - The sub header padding right CSS custom property. * @cssprop {String} --calendar-sub-header-padding-top - The sub header padding top CSS custom property. * @cssprop {String} --calendar-sub-header-shadow - The sub header shadow CSS custom property. * @cssprop {String} --calendar-sub-header-shadow-blur - The sub header shadow blur CSS custom property. * @cssprop {String} --calendar-sub-header-shadow-color - The sub header shadow color CSS custom property. * @cssprop {String} --calendar-sub-header-shadow-offset-x - The sub header shadow offset x CSS custom property. * @cssprop {String} --calendar-sub-header-shadow-offset-y - The sub header shadow offset y CSS custom property. * @cssprop {String} --calendar-sub-header-shadow-spread - The sub header shadow spread CSS custom property. * @cssprop {String} --calendar-sub-header-transition-duration - The sub header transition duration CSS custom property. * @cssprop {String} --calendar-sub-header-transition-mode - The sub header transition mode CSS custom property. * @cssprop {String} --calendar-sub-header-transition-property - The sub header transition property CSS custom property. * @cssprop {String} --calendar-sub-header-translate - The sub header translate CSS custom property. * * @dependency mosaik-text - The Text element. * * @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