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