import { CalendarView } from '../../../../Types/CalendarView'; import { CalendarViewBaseElement } from './Abstracts/CalendarViewBase'; import type { ICalendarMonthsViewElementProps } from './ICalendarMonthsViewElementProps'; declare const CalendarMonthsViewElement_base: (abstract new (...args: Array) => import("../../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../../Behaviors/Appearanceable").IAppearanceableProps) & (abstract new (...args: Array) => import("../../../../Behaviors/Variantable").IVariantableProps) & typeof CalendarViewBaseElement & import("../../../../Behaviors/Themeable").IThemeableCtor; /** * Calendar Months View - A component that displays a view of months in a calendar, allowing users to select a month. * * @description * The Calendar Months View component presents a grid of months within a calendar format. Users can navigate through and * select a specific month from the displayed options. This view is typically used within a date picker or calendar * component to help users choose a month for date selection or scheduling purposes. * * @name CalendarMonthsView * @element mosaik-calendar-months-view * @category Calendar * * @slot header - The header slot. * * @csspart heading - The heading part. * @csspart month - The month part. * @csspart navigation - The navigation part. * @csspart monthView - The month view part. * @csspart item - The item part. * * @cssprop {String} --calendar-months-view-padding-top * @cssprop {String} --calendar-months-view-padding-right * @cssprop {String} --calendar-months-view-padding-bottom * @cssprop {String} --calendar-months-view-padding-left * @cssprop {String} --calendar-months-view-gap * * @example * Basic calendar months view: * ```html * * ``` * * @example * Calendar months view with short format: * ```html * * ``` * * @public */ export declare class CalendarMonthsViewElement extends CalendarMonthsViewElement_base implements ICalendarMonthsViewElementProps { private _format?; /** * @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 `format` property. * * @public * @attr */ get format(): Intl.DateTimeFormatOptions['month']; set format(value: Intl.DateTimeFormatOptions['month']); /** * @protected * @template */ selectMonth(month: number): void; /** * @protected * @template */ setView(view: CalendarView): void; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-calendar-months-view': CalendarMonthsViewElement; } } export {}; //# sourceMappingURL=CalendarMonthsViewElement.d.ts.map