import { IkasBaseModel } from "../base"; import { IkasLocationTranslations } from "./location-translations"; export declare type IkasCountry = { capital: string | null; currency: string | null; emoji: string | null; emojiString: string | null; iso2: string | null; iso3: string | null; locationTranslations?: IkasLocationTranslations | null; name: string; native: string | null; phoneCode: string | null; region: string | null; subregion: string | null; } & IkasBaseModel;