import React from 'react'; import { DatePickerDateCell } from '../DatePickerDateCell'; export type DatePickerCalendarProps = { value?: Date; onChange?: (date: Date | undefined, event: React.MouseEvent) => void; minDate?: Date; maxDate?: Date; checkDisabledDate?: (date: Date) => boolean; todayButtonProps?: { label?: string; }; prevMonthIconButtonProps?: { 'aria-label'?: string; }; nextMonthIconButtonProps?: { 'aria-label'?: string; }; renderDateCell?: (props: React.ComponentProps) => React.ReactNode; } & Omit, 'onChange'>; /** * DatePickerCalendar is a self-contained calendar component for DatePicker. * It integrates DatePicker context and custom cell rendering. */ export declare function DatePickerCalendar({ value, onChange, minDate, maxDate, checkDisabledDate, todayButtonProps, prevMonthIconButtonProps, nextMonthIconButtonProps, renderDateCell, ...rest }: DatePickerCalendarProps): import("react/jsx-runtime").JSX.Element;