import { WeightDetails } from './../units/weight-details';
import { ShipmentPackage } from './shipment-package';
/** @description The shipment information related to the service point */
export declare class ServicePointShipment {
    /** @description Detailed information about the weight of this item */
    total_weight?: WeightDetails;
    /**@description Pacakges in shipment */
    packages?: Array<ShipmentPackage>;
}
