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 item - The item part. * @csspart month - The month part. * @csspart monthView - The month view part. * @csspart navigation - The navigation part. * * @cssprop {String} --calendar-months-view-font-family - The months view font family CSS custom property. * @cssprop {String} --calendar-months-view-font-letter-spacing - The months view font letter spacing CSS custom property. * @cssprop {String} --calendar-months-view-font-line-height - The months view font line height CSS custom property. * @cssprop {String} --calendar-months-view-font-size - The months view font size CSS custom property. * @cssprop {String} --calendar-months-view-font-text-decoration - The months view font text decoration CSS custom property. * @cssprop {String} --calendar-months-view-font-text-transform - The months view font text transform CSS custom property. * @cssprop {String} --calendar-months-view-font-weight - The months view font weight CSS custom property. * @cssprop {String} --calendar-months-view-gap * @cssprop {String} --calendar-months-view-padding-bottom * @cssprop {String} --calendar-months-view-padding-left * @cssprop {String} --calendar-months-view-padding-right * @cssprop {String} --calendar-months-view-padding-top * @cssprop {String} --calendar-months-view-shadow - The months view shadow CSS custom property. * @cssprop {String} --calendar-months-view-shadow-blur - The months view shadow blur CSS custom property. * @cssprop {String} --calendar-months-view-shadow-color - The months view shadow color CSS custom property. * @cssprop {String} --calendar-months-view-shadow-offset-x - The months view shadow offset x CSS custom property. * @cssprop {String} --calendar-months-view-shadow-offset-y - The months view shadow offset y CSS custom property. * @cssprop {String} --calendar-months-view-shadow-spread - The months view shadow spread CSS custom property. * @cssprop {String} --calendar-months-view-transition-duration - The months view transition duration CSS custom property. * @cssprop {String} --calendar-months-view-transition-mode - The months view transition mode CSS custom property. * @cssprop {String} --calendar-months-view-transition-property - The months view transition property CSS custom property. * @cssprop {String} --calendar-months-view-translate - The months view translate CSS custom property. * * @dependency mosaik-button - The Button element. * @dependency mosaik-button-group - The Button Group element. * @dependency mosaik-calendar-item - The Calendar Item element. * * @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