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