import { Model } from 'sequelize-typescript';
import { CustomerBaseModel } from './customer-base.entity';
export declare class CustomerIndividualModel extends Model {
    CustomerId: string;
    FullName: string;
    IdType: string;
    IdNo: string;
    Title: string;
    PreferredName: string;
    Birthdate: Date;
    Gender: 'Male' | 'Female';
    Ethnicity: string;
    Nationality: string;
    PreferredLanguage: string;
    CustomerBase: CustomerBaseModel;
}
