interface DatePickerCalendarProps {
    selected: Date | undefined;
    onSelect: (date: Date) => void;
    month: Date | undefined;
    onMonthChange: (date: Date | undefined) => void;
    startMonth: Date;
    endMonth: Date;
    disablePastDates?: boolean;
}
export declare function DatePickerCalendar({ selected, onSelect, month, onMonthChange, startMonth, endMonth, disablePastDates }: DatePickerCalendarProps): import("react/jsx-runtime").JSX.Element;
export {};
