import { User } from '../entities/user.entity';
import { OrderItem } from './order-item.entity';
export declare class ProductionLine {
    id: string;
    name: string;
    type: 'fabric' | 'furniture' | 'metalworks' | 'shoes';
    status: 'active' | 'maintenance' | 'inactive';
    capacity: number;
    specifications: {
        width: number;
        height: number;
        depth: number;
        materials: string;
    };
    manager: User;
    createdAt: Date;
    updatedAt: Date;
    orderItems: OrderItem[];
}
