import { CSSResultGroup, PropertyValues, TemplateResult } from 'lit'; import { SbbElement } from '../../core/base-elements.ts'; /** * It displays a month in the `sbb-mini-calendar`. * * @slot - Use the unnamed slot to add `sbb-mini-calendar-day` elements. */ export declare class SbbMiniCalendarMonthElement extends SbbElement { static readonly elementName: string; static styles: CSSResultGroup; /** Date as ISO string (YYYY-MM) */ accessor date: string; private _dateAdapter; private _monthNames; private _monthLabel; private _yearLabel; private _previousOrientation; constructor(); protected willUpdate(changedProperties: PropertyValues): void; protected render(): TemplateResult; } declare global { interface HTMLElementTagNameMap { 'sbb-mini-calendar-month': SbbMiniCalendarMonthElement; } } //# sourceMappingURL=mini-calendar-month.component.d.ts.map