import { Order } from './order.entity';
import { QualityCheck } from './quality-check.entity';
import { Product } from './product.entity';
export declare class OrderItem {
    id: string;
    orderId: string;
    order: Order;
    qualityChecks: QualityCheck[];
    productId: string;
    product: Product;
    productionLineId?: string;
    quantity: number;
    unitPrice: number;
    status: 'pending' | 'in_progress' | 'completed' | 'cancelled';
    specifications: {
        width?: number;
        height?: number;
        depth?: number;
        material?: string;
        color?: string;
        specialRequests?: string[];
    };
    createdAt: Date;
    updatedAt: Date;
}
