import { SupermodelIoLogisticsExpressCreateShipmentRequestContentExportDeclaration } from './SupermodelIoLogisticsExpressCreateShipmentRequestContentExportDeclaration';
import { SupermodelIoLogisticsExpressPackage } from './SupermodelIoLogisticsExpressPackage';
export declare class SupermodelIoLogisticsExpressCreateShipmentRequestContent {
    'packages': Array<SupermodelIoLogisticsExpressPackage>;
    'isCustomsDeclarable': boolean;
    'declaredValue'?: number;
    'declaredValueCurrency'?: string;
    'exportDeclaration'?: SupermodelIoLogisticsExpressCreateShipmentRequestContentExportDeclaration;
    'description': string;
    'uSFilingTypeValue'?: string;
    'incoterm': SupermodelIoLogisticsExpressCreateShipmentRequestContentIncotermEnum;
    'unitOfMeasurement': SupermodelIoLogisticsExpressCreateShipmentRequestContentUnitOfMeasurementEnum;
    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 SupermodelIoLogisticsExpressCreateShipmentRequestContentIncotermEnum = "EXW" | "FCA" | "CPT" | "CIP" | "DPU" | "DAP" | "DDP" | "FAS" | "FOB" | "CFR" | "CIF" | "DAF" | "DAT" | "DDU" | "DEQ" | "DES";
export declare type SupermodelIoLogisticsExpressCreateShipmentRequestContentUnitOfMeasurementEnum = "metric" | "imperial";
