import { Product } from './product.entity';
import { Material } from './material.entity';
export declare class MaterialRequirement {
    id: number;
    product: Product;
    materialId: string;
    orderId: string;
    orderItemId: string;
    material: Material;
    quantity: number;
    wastagePercentage: number;
    isActive: boolean;
    createdAt: Date;
    updatedAt: Date;
}
