import React from 'react'; import { CalendarCellProps } from '../../types'; /** * Grid cell button element with the formatted day number. * Utilizes the useCalendarCell hook to return props for an individual cell, * along with states and information. */ declare const CalendarCell: React.ForwardRefExoticComponent>; export default CalendarCell;