import { type ComponentPropsWithRef } from "react"; import { type CalendarDayProps } from "./CalendarDay"; export interface CalendarMonthProps extends ComponentPropsWithRef<"div"> { /** * Month to render as selectable dates */ date: TDate; /** * Props for the CalendarDay component. */ CalendarDayProps?: Partial>; } export declare const CalendarMonth: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>;