import { Order } from './order.entity';
export declare class Customer {
    id: string;
    name: string;
    email: string;
    phone: string;
    address?: string;
    company?: string;
    notes?: string;
    isActive: boolean;
    createdAt: Date;
    updatedAt: Date;
    orders: Order[];
}
