import { FunctionComponent } from "react";
import { ParsedDate, SplittedDate } from "../../../../types/types";
interface DayPickerBodyProps {
    selectedDate: ParsedDate;
    calenderDate: ParsedDate;
    onSelect: (date: SplittedDate) => void;
}
declare const DayPickerBody: FunctionComponent<DayPickerBodyProps>;
export default DayPickerBody;
