import { Model } from 'sequelize-typescript';
import { CustomerBusinessModel } from './customer-business.entity';
export declare class BusinessContactModel extends Model {
    ContactId: string;
    CustomerId: string;
    Name: string;
    Email: string;
    ContactNo: string;
    Position: string;
    IsMainYN: string;
    Business: CustomerBusinessModel;
}
