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