import React from 'react'; import { Dayjs } from 'dayjs'; import { TCallback, TRenderDayProps } from '../interfaces'; declare const DayContent: React.FunctionComponent<{ date: Dayjs; onSelect?: TCallback; renderCell?: TRenderDayProps; start: Dayjs; end: Dayjs; }>; export default DayContent;