import React from "react";
import { SvgIconTypeMap } from "@mui/material/SvgIcon";
import { ShipmentDestinationType } from "../types/shipment";
export type ShipmentDestinationIconProps = SvgIconTypeMap["props"] & {
    type: ShipmentDestinationType;
};
export declare const ShipmentDestinationIcon: React.FC<ShipmentDestinationIconProps>;
