import { SupermodelIoLogisticsExpressAccount } from './SupermodelIoLogisticsExpressAccount';
import { SupermodelIoLogisticsExpressPackageRR } from './SupermodelIoLogisticsExpressPackageRR';
import { SupermodelIoLogisticsExpressValueAddedServicesRates } from './SupermodelIoLogisticsExpressValueAddedServicesRates';
export declare class SupermodelIoLogisticsExpressUpdatePickupRequestShipmentDetailsInner {
    'productCode': string;
    'localProductCode'?: string;
    'accounts'?: Array<SupermodelIoLogisticsExpressAccount>;
    'valueAddedServices'?: Array<SupermodelIoLogisticsExpressValueAddedServicesRates>;
    'isCustomsDeclarable': boolean;
    'declaredValue'?: number;
    'declaredValueCurrency'?: string;
    'unitOfMeasurement': SupermodelIoLogisticsExpressUpdatePickupRequestShipmentDetailsInnerUnitOfMeasurementEnum;
    'shipmentTrackingNumber'?: string;
    'packages': Array<SupermodelIoLogisticsExpressPackageRR>;
    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 SupermodelIoLogisticsExpressUpdatePickupRequestShipmentDetailsInnerUnitOfMeasurementEnum = "metric" | "imperial";
