import { Order } from './order.entity';
export declare class Customer {
    id: string;
    name: string;
    email: string;
    phone: string;
    address: string | null;
    company: string | null;
    contactPerson: string | null;
    taxId: string | null;
    creditLimit: number;
    paymentTerms: string | null;
    notes: string | null;
    tags: string[];
    source: string | null;
    assignedTo: string | null;
    priority: string;
    status: string;
    totalOrders: number;
    totalSpent: number;
    lastOrderDate: Date | null;
    isActive: boolean;
    orders: Order[];
    createdAt: Date;
    updatedAt: Date;
}
