export declare const TIMELINE_CLASSNAME = "k-timeline";
export type KendoTimelineProps = {
    children?: React.JSX.Element | React.JSX.Element[];
    orientation?: null | 'vertical' | 'horizontal';
    collapsibleEvents?: boolean;
    alternatingMode?: boolean;
};
export declare const Timeline: {
    (props: KendoTimelineProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
    states: any[];
    options: {};
    className: string;
    defaultOptions: {
        orientation: string;
    };
};
export default Timeline;
