import { BookingTimelineProps } from './types'; /** * Rental timeline: a vertical rail carrying the Delivery / Start / End / Retrieval bookends, * with every event of the rental displayed in between on a single line (status flag node, * name, photo pile, declarant avatar, date). * * Purely presentational — dates and labels arrive formatted; the host app adapts its data. * The arrival / departure arrows belong to Delivery / Retrieval: when those bookends are * absent (delivery on the start day / retrieval on the end day, folded into the start / end * anchors) the anchors keep the arrows, otherwise the start shows a play icon and the end * a finish flag. */ declare const BookingTimeline: ({ start, end, delivery, retrieval, isLoading, emptyMessage, labels, events, "data-test": dataTest, "data-testid": dataTestId, }: BookingTimelineProps) => import("@emotion/react/jsx-runtime").JSX.Element; export default BookingTimeline;