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 * * @csspart header - The container element wrapping the header content * * @cssprop {String} --calendar-header-background-color - The background color of the header * @cssprop {String} --calendar-header-foreground-color - The text color of the header * @cssprop {String} --calendar-header-border-color - The border color * @cssprop {String} --calendar-header-border-width - The border thickness * @cssprop {String} --calendar-header-border-style - The border line style * @cssprop {String} --calendar-header-border-radius - The corner rounding radius * * @dependency {TextElement} - Text rendering component for header labels * * @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