import { DateTime } from 'luxon'; import { ComponentPropsWithoutRef } from 'react'; export type CalendarMonthSelectionProps = ComponentPropsWithoutRef<"div"> & { /** * The function to call when a month is selected. * * @param month - The month that is selected. */ onMonthSelection: (month: DateTime["month"]) => void; }; /** * A component that displays a grid of month cards and allows the user to select a month. * * @param props.onMonthSelection - The function to call when a month is selected. * @param props - The rest of the props for the div wrapper. * @returns A component that displays a grid of month cards and allows the user to select a month. */ export declare const CalendarMonthSelection: import('react').ForwardRefExoticComponent, HTMLDivElement>, "ref"> & { /** * The function to call when a month is selected. * * @param month - The month that is selected. */ onMonthSelection: (month: DateTime["month"]) => void; } & import('react').RefAttributes>;