import { JSX } from 'react';
import { CellRenderedProps, DayHours } from '../types';
export interface DayProps {
    startHour: DayHours;
    endHour: DayHours;
    step: number;
    cellRenderer?(props: CellRenderedProps): JSX.Element;
    headRenderer?(day: Date): JSX.Element;
    hourRenderer?(hour: string): JSX.Element;
    navigation?: boolean;
}
declare const Day: () => import("react/jsx-runtime").JSX.Element;
export { Day };
