import { CustomerUser } from './customer-user.entity';
import { CustomerFieldValue } from './customer-field-value.entity';
export declare class Customer {
    id: number;
    name: string;
    code: string;
    phone: string;
    email: string;
    address: string;
    facebook: string;
    zalo: string;
    note: string;
    status: number;
    created_at: Date;
    updated_at: Date;
    customerUsers: CustomerUser[];
    fieldValues: CustomerFieldValue[];
}
