import React from 'react'; import { TRenderLayoutProps } from '../interfaces'; import { Dayjs } from 'dayjs'; declare const DayFoot: React.FunctionComponent<{ onReset: () => void; renderFoot?: TRenderLayoutProps; date: Dayjs; showCurrent: boolean; currentText: string; }>; export default DayFoot;