import { IkasStockLocationAddressCity } from "./city"; import { IkasStockLocationAddressCountry } from "./country"; import { IkasStockLocationAddressDistrict } from "./district"; import { IkasStockLocationAddressState } from "./state"; export declare type IkasStockLocationAddress = { address: string | null; city: IkasStockLocationAddressCity | null; country: IkasStockLocationAddressCountry | null; district: IkasStockLocationAddressDistrict | null; phone: string | null; postalCode: string | null; state: IkasStockLocationAddressState | null; };