import { CustomElement } from '../../Abstracts/CustomElement'; import type { ICalendarHeaderElementProps } from './ICalendarHeaderElementProps'; declare const CalendarHeaderElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Disableable").IDisableableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * Calendar Header - The primary heading or title text displayed within calendar components. * * @description * The Calendar Header component provides a styled heading element used in calendar interfaces * to display month names, year labels, or other calendar-related title information. It supports * disabled states and customizable text content. This component is typically used within * calendar pickers, date selectors, and scheduling interfaces to provide clear section headers. * * @name Calendar Header * @element mosaik-calendar-header * @category Inputs * * @slot header - The default slot for custom header content * * @cssprop {String} --calendar-header-background-color - The background color of the header * @cssprop {String} --calendar-header-border-color - The border color * @cssprop {String} --calendar-header-border-radius - The corner rounding radius * @cssprop {String} --calendar-header-border-style - The border line style * @cssprop {String} --calendar-header-border-width - The border thickness * @cssprop {String} --calendar-header-font-family - The header font family CSS custom property. * @cssprop {String} --calendar-header-font-letter-spacing - The header font letter spacing CSS custom property. * @cssprop {String} --calendar-header-font-line-height - The header font line height CSS custom property. * @cssprop {String} --calendar-header-font-size - The header font size CSS custom property. * @cssprop {String} --calendar-header-font-text-decoration - The header font text decoration CSS custom property. * @cssprop {String} --calendar-header-font-text-transform - The header font text transform CSS custom property. * @cssprop {String} --calendar-header-font-weight - The header font weight CSS custom property. * @cssprop {String} --calendar-header-foreground-color - The text color of the header * @cssprop {String} --calendar-header-gap - The header gap CSS custom property. * @cssprop {String} --calendar-header-padding-bottom - The header padding bottom CSS custom property. * @cssprop {String} --calendar-header-padding-left - The header padding left CSS custom property. * @cssprop {String} --calendar-header-padding-right - The header padding right CSS custom property. * @cssprop {String} --calendar-header-padding-top - The header padding top CSS custom property. * @cssprop {String} --calendar-header-shadow - The header shadow CSS custom property. * @cssprop {String} --calendar-header-shadow-blur - The header shadow blur CSS custom property. * @cssprop {String} --calendar-header-shadow-color - The header shadow color CSS custom property. * @cssprop {String} --calendar-header-shadow-offset-x - The header shadow offset x CSS custom property. * @cssprop {String} --calendar-header-shadow-offset-y - The header shadow offset y CSS custom property. * @cssprop {String} --calendar-header-shadow-spread - The header shadow spread CSS custom property. * @cssprop {String} --calendar-header-transition-duration - The header transition duration CSS custom property. * @cssprop {String} --calendar-header-transition-mode - The header transition mode CSS custom property. * @cssprop {String} --calendar-header-transition-property - The header transition property CSS custom property. * @cssprop {String} --calendar-header-translate - The header translate CSS custom property. * * @dependency mosaik-text - The Text element. * * @example * Basic calendar header: * ```html * * ``` * * @example * Custom header content via slot: * ```html * * * * ``` * * @public */ export declare class CalendarHeaderElement extends CalendarHeaderElement_base implements ICalendarHeaderElementProps { 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 CalendarHeaderElement { type Props = ICalendarHeaderElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-calendar-header': CalendarHeaderElement; } } export {}; //# sourceMappingURL=CalendarHeaderElement.d.ts.map