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