import { ExternalShipmentAddress, ExternalShipmentFile, ExternalShipmentHistory, ExternalShipmentStatuses } from './api-e-tools-auto-billing.interfaces';
export type ExternalShipmentAddressesIn = {
    id: number;
    addressLine1: string;
    addressLine2: string;
    addressLine3: string;
    cityName: string;
    companyName: string;
    email: string;
    fullName: string;
    identificationNumber: string;
    identificationTypeId: number;
    phoneCode: string;
    phoneNumber: string;
    postalCode: string;
};
export type ExternalShipmentAddressesOut = {
    externalShipmentAddress: ExternalShipmentAddress;
};
export type ExternalShipmentFileOut = {
    externalShipmentFile: ExternalShipmentFile;
};
export type ExternalShipmentHistoriesOut = {
    total: number;
    externalShipmentHistories: ExternalShipmentHistory[];
};
export type ExternalShipmentStatusOut = {
    total: number;
    externalShipmentStatuses: ExternalShipmentStatuses[];
};
