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