import React from 'react'; export interface CalendarWeekCellProps extends React.HTMLAttributes { /** * if cell day is today, then property will be true */ readonly isToday?: boolean; readonly inCurrentMonth?: boolean; } declare const _default: React.ForwardRefExoticComponent>; export default _default;