import { ComponentPropsWithoutRef } from 'react'; import { DateTime } from 'luxon'; export type CalendarWeekProps = ComponentPropsWithoutRef<"tr"> & { /** * @deprecated This is overridden internally */ className?: ComponentPropsWithoutRef<"tr">["className"]; /** * The dates for the week. */ week: DateTime[]; }; /** * A component that displays a week in the calendar. * * @param props - The props for the tr element. * @returns A component that displays a week in the calendar. */ export declare const CalendarWeek: import('react').ForwardRefExoticComponent, HTMLTableRowElement>, "ref"> & { /** * @deprecated This is overridden internally */ className?: ComponentPropsWithoutRef<"tr">["className"]; /** * The dates for the week. */ week: DateTime[]; } & import('react').RefAttributes>;