import { FC } from 'react'; import { MonthPickerRowProps } from '../../../../MonthPicker'; export type CalendarMonthPickerRowProps = MonthPickerRowProps; /** * `CalendarMonthPickerRow` is a calendar-scoped alias for `MonthPickerRow`, * representing a single horizontal row of month cells inside * `CalendarMonthPicker`. It forwards all props directly to the underlying * `MonthPickerRow` component without altering behavior or layout. */ export declare const CalendarMonthPickerRow: FC;