import { IkasShippingZoneState } from "./state"; export type IkasShippingZone = { countryId: string; postalCodes: string[]; showAllStates: boolean; states: IkasShippingZoneState[] | null; };