import React from 'react';
import type { WrapperCalendarProps } from '../Entities';
interface SpecificProps {
    onSelectDates: (dates: string[]) => void;
    selectedDates: string[];
}
declare type Props = SpecificProps & WrapperCalendarProps;
declare const MultiDateSelectionCalendar: React.FC<Props>;
export default MultiDateSelectionCalendar;
