import type { ThemeProps } from 'jamis-core';
import type { TimelineItemProps, TimelineSchema } from './types';
export interface TimelineProps extends ThemeProps, Omit<TimelineSchema, 'items' | 'className' | 'type'> {
    ref?: any;
    items: Array<TimelineItemProps>;
    direction?: 'vertical' | 'horizontal';
    reverse?: boolean;
    mode?: 'left' | 'right' | 'alternate';
}
export default function Timeline(props: TimelineProps): JSX.Element;
