import { SupermodelIoLogisticsExpressAccount } from './SupermodelIoLogisticsExpressAccount';
import { SupermodelIoLogisticsExpressPickupRequestCustomerDetails } from './SupermodelIoLogisticsExpressPickupRequestCustomerDetails';
import { SupermodelIoLogisticsExpressPickupRequestSpecialInstructionsInner } from './SupermodelIoLogisticsExpressPickupRequestSpecialInstructionsInner';
import { SupermodelIoLogisticsExpressUpdatePickupRequestShipmentDetailsInner } from './SupermodelIoLogisticsExpressUpdatePickupRequestShipmentDetailsInner';
export declare class SupermodelIoLogisticsExpressUpdatePickupRequest {
    'dispatchConfirmationNumber': string;
    'originalShipperAccountNumber': string;
    'plannedPickupDateAndTime': string;
    'closeTime'?: string;
    'location'?: string;
    'locationType'?: SupermodelIoLogisticsExpressUpdatePickupRequestLocationTypeEnum;
    'accounts': Array<SupermodelIoLogisticsExpressAccount>;
    'specialInstructions'?: Array<SupermodelIoLogisticsExpressPickupRequestSpecialInstructionsInner>;
    'remark'?: string;
    'customerDetails': SupermodelIoLogisticsExpressPickupRequestCustomerDetails;
    'shipmentDetails'?: Array<SupermodelIoLogisticsExpressUpdatePickupRequestShipmentDetailsInner>;
    static readonly discriminator: string | undefined;
    static readonly attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
        format: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
        format: string;
    }[];
    constructor();
}
export declare type SupermodelIoLogisticsExpressUpdatePickupRequestLocationTypeEnum = "business" | "residence";
