import { IkasLocationTranslations } from "../location-translations"; export type IkasCountry = { id: string; createdAt: number; updatedAt: number; deleted?: boolean | null; 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; };