import { TZDate } from '@date-fns/tz'; /** @internal */ export interface DayProps { /** The day it represents. */ date: TZDate; /** Whether the day is part of the current month */ isCurrentMonthDay?: boolean; /** Position in the calendar grid 1 is first day and 7 the last */ position: number; } /** * Day component * Renders one single day of a calendar month */ export declare const Day: { ({ date, isCurrentMonthDay, position }: DayProps): import("react/jsx-runtime.js").JSX.Element; displayName: string; };