import { Model } from 'sequelize-typescript';
import { CustomerBaseModel } from './customer-base.entity';
import { BusinessContactModel } from './business-contact.entity';
export declare class CustomerBusinessModel extends Model {
    CustomerId: string;
    CompanyName: string;
    RegistrationNo: string;
    TaxIdentificationNo: string;
    CustomerBase: CustomerBaseModel;
    BusinessContact: BusinessContactModel[];
}
