import { KendoComponent } from '../_types/component';
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: KendoComponent<KendoTimelineProps & React.HTMLAttributes<HTMLDivElement>>;
export default Timeline;
