import { BaseEntity } from "./base.entity";
import { State } from "./state.entity";
import { FreelancerProfile } from "./freelancer-profile.entity";
import { CompanyProfile } from "./company-profile.entity";
export declare class Country extends BaseEntity {
    countryName: string;
    countryIsoCode: string;
    countryPhoneCode: string;
    currency: string;
    isActive: boolean;
    states: State[];
    freelancerProfile: FreelancerProfile[];
    companyProfile: CompanyProfile[];
}
