export type KendoSchedulerTaskProps = {
    text?: string;
    markStyle?: React.CSSProperties;
    recurring?: boolean;
    closable?: boolean;
};
export declare const SchedulerTask: {
    (props: KendoSchedulerTaskProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
    states: any[];
    options: {};
    defaultOptions: {
        markStyle: {
            backgroundColor: string;
        };
    };
    className: string;
};
export default SchedulerTask;
