import { CSSResultGroup, PropertyValues, TemplateResult } from 'lit'; import { SbbButtonBaseElement } from '../../core.ts'; /** * It displays a day in the `sbb-mini-calendar-month`. */ export declare class SbbMiniCalendarDayElement extends SbbButtonBaseElement { static readonly elementName: string; static styles: CSSResultGroup; private _dateAdapter; /** Date as ISO string (YYYY-MM-DD) */ accessor date: string; /** The type of the marker. */ accessor marker: 'target' | 'circle' | 'slash' | 'cross' | string; /** The color of the marker. */ accessor color: 'charcoal' | 'cloud' | 'orange' | 'red' | 'sky' | string; protected willUpdate(changedProperties: PropertyValues): void; protected renderTemplate(): TemplateResult; } declare global { interface HTMLElementTagNameMap { 'sbb-mini-calendar-day': SbbMiniCalendarDayElement; } } //# sourceMappingURL=mini-calendar-day.component.d.ts.map