import { IkasOrderAddressCity } from "./city"; import { IkasOrderAddressCountry } from "./country"; import { IkasOrderAddressDistrict } from "./district"; import { IkasOrderAddressRegion } from "./region"; import { IkasOrderAddressState } from "./state"; export declare type IkasOrderAddress = { addressLine1: string; addressLine2: string | null; company: string | null; firstName: string; id: string | null; identityNumber: string | null; isDefault: boolean; lastName: string; phone: string | null; postalCode: string | null; taxNumber: string | null; taxOffice: string | null; country: IkasOrderAddressCountry | null; state: IkasOrderAddressState | null; city: IkasOrderAddressCity | null; district: IkasOrderAddressDistrict | null; region: IkasOrderAddressRegion | null; };