import { KendoComponent } from '../_types/component';
export type KendoSchedulerViewProps = {
    view?: "day" | "week" | "month" | "agenda" | "timeline" | "year";
};
export declare const SchedulerView: KendoComponent<KendoSchedulerViewProps & ((React.HTMLAttributes<HTMLDivElement> & {
    as: 'div';
}) | (React.HTMLAttributes<HTMLTableElement> & {
    as: 'table';
}))>;
export default SchedulerView;
