import { KendoComponent } from '../_types/component';
export type KendoCalendarCaptionCellProps = {
    text?: string;
    scope?: string;
    colSpan?: number;
    rowSpan?: number;
};
export declare const CalendarCaptionCell: KendoComponent<KendoCalendarCaptionCellProps & React.HTMLAttributes<HTMLTableCellElement>>;
