import { IkasBaseModel } from "../base"; import { IkasLocationTranslations } from "./location-translations"; export declare type IkasState = { countryId: string; locationTranslations?: IkasLocationTranslations | null; name: string; native: string | null; stateCode: string | null; } & IkasBaseModel;