import { CalendarDate } from '@internationalized/date';
import { CalendarPropsBase } from '@react-types/calendar';
import { ElementProps } from '../types/common.types.js';

interface CalendarGridProps extends ElementProps<'table'>, CalendarPropsBase {
    startDate: CalendarDate;
    currentMonth: number;
}
declare const CalendarGrid: (props: CalendarGridProps) => JSX.Element;

export { type CalendarGridProps, CalendarGrid as default };
