import { FunctionComponent } from 'react';
import { ParsedDate, SplittedDate } from '../../../Types';

interface DaySelectorBodyProps {
    selectedDate: ParsedDate | null;
    calenderDate: ParsedDate;
    onSelect: (date: SplittedDate) => void;
}
declare const DaySelectorBody: FunctionComponent<DaySelectorBodyProps>;
export default DaySelectorBody;
