import React from "react"; /** * TruckLocationTimeLine component. * * Renders the truck location timeline UI based on the provided props. * * @param props - The component props. * @param props.source - The source location. * @param props.destination - The destination location. * @param props.location_at - The list of truck locations with address and timestamp. * @param props.created_at - The creation timestamp. * @param props.destination_in - The destination out timestamp. * @param props.destination_out - The destination out timestamp. */ export declare const TruckLocationTimeLine: (tripDetails: any) => React.JSX.Element;