import React from "react"; import type { CalendarWeek } from "../classes/index.js"; /** * Render a row in the calendar, with the days and the week number. * * @group Components * @see https://daypicker.dev/guides/custom-components */ export declare function Week(props: { week: CalendarWeek; } & JSX.IntrinsicElements["tr"]): React.JSX.Element; export type WeekProps = Parameters[0];