import { ShippedShipment } from './shipped-shipment';
/** @description Details for a pickup shipment */
export declare class PickupShipmentDetails {
    /** @description Service category for the carrier (ground, express, next_day) */
    pickup_service_code?: string;
    /** @description List of shipments to be picked up */
    shipments?: ShippedShipment[];
}
