export declare class CreateSupplierDto {
    destination_id: string;
    supplier_types: string[];
    name: string;
    contact_person: string;
    phone: string;
    email?: string;
    alt_phone?: string;
    photo_url?: string;
    address?: string;
    linked_transport_services?: string[];
    transport_operational_area?: string;
    transport_operational_hours?: string;
    fleet_count?: number;
    transport_notes?: string;
    linked_activities?: string[];
    activity_operational_area?: string;
    activity_operational_hours?: string;
    capacity?: number;
    pricing_type?: string;
    activity_notes?: string;
    is_active?: boolean;
}
