import { PurchaseOrder } from '../entities/purchase-order.entity';
import { Material } from '../entities/material.entity';
export declare class Supplier {
    id: string;
    name: string;
    email: string;
    phone: string;
    address: string;
    contactPerson: {
        name: string;
        email: string;
        phone: string;
    };
    isActive: boolean;
    orders: PurchaseOrder[];
    materials: Material[];
    createdAt: Date;
    updatedAt: Date;
}
