declare const states: ("active" | "focus" | "disabled" | "selected" | "hover")[];
export type KendoCalendarCellProps = {
    text?: string;
    headerCell?: boolean;
    today?: boolean;
    weekend?: boolean;
    showOtherMonth?: boolean;
    weekCell?: boolean;
    rangeStart?: boolean;
    rangeMid?: boolean;
    rangeEnd?: boolean;
    empty?: boolean;
    dayIndicator?: boolean;
};
export type KendoCalendarCellState = {
    [K in (typeof states)[number]]?: boolean;
};
export declare const CalendarCell: {
    (props: KendoCalendarCellProps & KendoCalendarCellState & React.HTMLAttributes<HTMLElement>): import("react/jsx-runtime").JSX.Element;
    states: ("active" | "focus" | "disabled" | "selected" | "hover")[];
};
export default CalendarCell;
