export type KendoSchedulerCellProps = {
    cellType?: string[];
    allDay?: boolean;
    text?: string;
    colspan?: number;
    rowspan?: number;
};
export declare const SchedulerCell: {
    (props: KendoSchedulerCellProps & ((React.AllHTMLAttributes<HTMLDivElement> & {
        as: "div";
    }) | (React.HTMLAttributes<HTMLTableCellElement> & {
        as: "th" | "td";
    }))): import("react/jsx-runtime").JSX.Element;
    states: any[];
    options: {};
    defaultOptions: {};
    className: string;
};
export default SchedulerCell;
