import * as React from 'react';
import type { IDayInfo } from './CalendarDayGrid.base';
import type { ICalendarGridRowProps } from './CalendarGridRow';
export interface ICalendarGridDayCellProps extends ICalendarGridRowProps {
    day: IDayInfo;
    dayIndex: number;
}
export declare const CalendarGridDayCell: React.FunctionComponent<ICalendarGridDayCellProps>;
