import { IkasLocationTranslations } from "../location-translations"; export type IkasState = { id: string; createdAt: number; updatedAt: number; deleted?: boolean | null; countryId: string; locationTranslations?: IkasLocationTranslations | null; name: string; native: string | null; stateCode: string | null; };