import React from 'react';
import type { WrapperCalendarProps } from '../Entities';
interface SpecificProps {
    onSelectDate: (date: string) => void;
    selectedDate: string;
}
declare type Props = SpecificProps & WrapperCalendarProps;
declare const DateSelectionCalendar: React.FC<Props>;
export default DateSelectionCalendar;
