import { SHIPMENT_TYPE } from 'src/utils/constants';
export declare class CreateShipmentDto {
    company_name: string;
    phone_number: string;
    country_phone_code: string;
    first_name: string;
    shipment_type: SHIPMENT_TYPE;
    last_name: string;
    is_new_company: string;
    email: string;
    pickup_from_en: string;
    pickup_from_ar: string;
    delivered_to_en: string;
    delivered_to_ar: string;
    shipment_mode: string;
    bill_of_lading: string;
    container_number: any;
    container: string;
    vessel_name: string;
    voyage: string;
    person_name_agent: string;
    agent: string;
    shipping_line: string;
    shipment_status: string;
    employees: any | Array<EmployeeDto>;
    eta: string;
    etd: string;
    commodity: any | Array<CommodityDto>;
    removed_employees: any | Array<string>;
}
export declare class EmployeeDto {
    phone_number: string;
    country_phone_code: string;
    first_name: string;
    last_name: string;
    view_shipment: boolean;
    email: string;
    show_invoice: boolean;
    employee_id: string;
}
export declare class CommodityDto {
    name_en: string;
    name_ar: string;
    volume: string;
    weight: string;
    new: boolean;
    quantity: string;
}
