import { CalendarView } from '../../../../Types/CalendarView'; import { CalendarViewBaseElement } from './Abstracts/CalendarViewBase'; import type { ICalendarYearsViewElementProps } from './ICalendarYearsViewElementProps'; declare const CalendarYearsViewElement_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 Years View - A component that displays a view of years in a calendar, allowing users to select a year. * * @description * The Calendar Years View component is used to display a list of years in a calendar format. This view allows users to * navigate and select a specific year. It is typically part of a larger calendar component or date picker, providing * a way to select years in the date selection process. * * @name CalendarYearsView * @element mosaik-calendar-years-view * @category Calendar * * @slot header - The header slot. * * @csspart heading - The heading part. * @csspart item - The item part. * @csspart navigation - The navigation part. * @csspart yearView - The year view part. * @csspart yearView - The yearView part. * * @cssprop {String} --calendar-years-view-font-family - The years view font family CSS custom property. * @cssprop {String} --calendar-years-view-font-letter-spacing - The years view font letter spacing CSS custom property. * @cssprop {String} --calendar-years-view-font-line-height - The years view font line height CSS custom property. * @cssprop {String} --calendar-years-view-font-size - The years view font size CSS custom property. * @cssprop {String} --calendar-years-view-font-text-decoration - The years view font text decoration CSS custom property. * @cssprop {String} --calendar-years-view-font-text-transform - The years view font text transform CSS custom property. * @cssprop {String} --calendar-years-view-font-weight - The years view font weight CSS custom property. * @cssprop {String} --calendar-years-view-gap * @cssprop {String} --calendar-years-view-padding-bottom * @cssprop {String} --calendar-years-view-padding-left * @cssprop {String} --calendar-years-view-padding-right * @cssprop {String} --calendar-years-view-padding-top * @cssprop {String} --calendar-years-view-shadow - The years view shadow CSS custom property. * @cssprop {String} --calendar-years-view-shadow-blur - The years view shadow blur CSS custom property. * @cssprop {String} --calendar-years-view-shadow-color - The years view shadow color CSS custom property. * @cssprop {String} --calendar-years-view-shadow-offset-x - The years view shadow offset x CSS custom property. * @cssprop {String} --calendar-years-view-shadow-offset-y - The years view shadow offset y CSS custom property. * @cssprop {String} --calendar-years-view-shadow-spread - The years view shadow spread CSS custom property. * @cssprop {String} --calendar-years-view-transition-duration - The years view transition duration CSS custom property. * @cssprop {String} --calendar-years-view-transition-mode - The years view transition mode CSS custom property. * @cssprop {String} --calendar-years-view-transition-property - The years view transition property CSS custom property. * @cssprop {String} --calendar-years-view-translate - The years 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 years view: * ```html * * ``` * * @example * Calendar years view with primary variant: * ```html * * ``` * * @public */ export declare class CalendarYearsViewElement extends CalendarYearsViewElement_base implements ICalendarYearsViewElementProps { /** * @public */ constructor(); /** * Returns the `is` property. * The `is` property represents natural name of this element. * * @public * @static * @readonly */ static get is(): string; /** * @protected * @template */ selectYear(year: number): void; /** * @protected * @template */ setView(view: CalendarView): void; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-calendar-years-view': CalendarYearsViewElement; } } export {}; //# sourceMappingURL=CalendarYearsViewElement.d.ts.map