import { Dayjs } from "dayjs"; import React from "react"; export declare type CellProps = { day: Dayjs; role: "first" | "last"; }; declare const DayCell: React.FC; export default DayCell;