import React from "react";
import { Shipment } from "../types/shipment";
export interface ShipmentCardProps {
    shipment: Shipment;
}
export declare const ShipmentCard: React.FC<ShipmentCardProps>;
export default ShipmentCard;
