import { KendoComponent } from '../_types/component';
export type KendoSchedulerCellProps = {
    cellType?: string[];
    allDay?: boolean;
    text?: string;
    colspan?: number;
    rowspan?: number;
};
export declare const SchedulerCell: KendoComponent<KendoSchedulerCellProps & ((React.AllHTMLAttributes<HTMLDivElement> & {
    as: 'div';
}) | (React.HTMLAttributes<HTMLTableCellElement> & {
    as: 'th' | 'td';
}))>;
export default SchedulerCell;
