import React from "react"; import { type CalendarCellProps as HeadlessCalendarCellProps } from "react-aria-components"; export type CalendarCellProps = HeadlessCalendarCellProps & React.RefAttributes; declare function CalendarCell(props: CalendarCellProps): JSX.Element; export { CalendarCell };