import { ComponentPropsWithoutRef } from 'react'; import { DateTime } from 'luxon'; export type CalendarDayProps = ComponentPropsWithoutRef<"td"> & { /** * The date to display. */ date: DateTime; }; /** * A component that displays a day in the calendar. * * @param props.date - The date to display. * @param props - The rest of the props for the td element. * @returns A component that displays a day in the calendar. */ export declare const CalendarDay: import('react').ForwardRefExoticComponent, HTMLTableDataCellElement>, "ref"> & { /** * The date to display. */ date: DateTime; } & import('react').RefAttributes>;