import React, { type HTMLAttributes } from "react"; /** * Render the container for the weeks in the month grid. * * @group Components * @see https://daypicker.dev/guides/custom-components */ export declare function Weeks(props: HTMLAttributes): React.JSX.Element; /** Props accepted by the {@link Weeks} component. */ export type WeeksProps = Parameters[0];