export declare class UpdateProductionLineDto {
    name?: string;
    type?: 'fabric' | 'furniture' | 'metalworks' | 'shoes';
    capacity?: number;
    status?: 'active' | 'maintenance' | 'inactive';
    specializations?: string[];
    managerId?: string;
}
