import { ViewProps } from "@vnxjs/components/types/View";
import { PropsWithChildren } from "react";
import { TimelinePosition } from "./timeline.shared";
export interface TimelineProps extends PropsWithChildren<ViewProps> {
    position?: TimelinePosition;
}
declare function Timeline(props: TimelineProps): JSX.Element;
export default Timeline;
