import { ActiveLessSymfonyModel } from './api.models';
export interface ShipmentEmployeeCustomers extends ActiveLessSymfonyModel {
    trackingNumber: string;
    employeeCustomerId: number;
    shipment: {
        id: number;
    } | null;
}
