import { TemplateResult } from 'lit'; import { Weekday } from '../calendar/calendar.component.ts'; import { SbbCalendarCellBaseElement } from '../common/calendar-cell-base-element.ts'; /** * It displays a single week day cell in the `sbb-calendar` component. */ export declare class SbbCalendarWeekdayElement extends SbbCalendarCellBaseElement { static readonly elementName: string; /** Value of the week day element. */ set value(value: Weekday | null); get value(): Weekday | null; private _value; protected setSelectedState(): void; protected setDisabledFilteredState(): void; protected renderTemplate(): TemplateResult; } declare global { interface HTMLElementTagNameMap { 'sbb-calendar-weekday': SbbCalendarWeekdayElement; } } //# sourceMappingURL=calendar-weekday.component.d.ts.map