import type { IAppearanceableProps } from '../../../../Behaviors/Appearanceable'; import type { IVariantableProps } from '../../../../Behaviors/Variantable'; import type { DayOfWeek } from '../../../../Types/DayOfWeek'; /** * Represents the `ICalendarDaysViewElementProps` interface. * * @public */ export interface ICalendarDaysViewElementProps extends IVariantableProps, IAppearanceableProps { showWeekNumbers: boolean; firstDayOfWeek: DayOfWeek; showAdjacent: boolean; isTodayHighlighted: boolean; isWeekendHighlighted: boolean; rangePreviewDate: Date | null; } //# sourceMappingURL=ICalendarDaysViewElementProps.d.ts.map