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