import { IkasMerchantAddressCity } from "./city"; import { IkasMerchantAddressCountry } from "./country"; import { IkasMerchantAddressDistrict } from "./district"; import { IkasMerchantAddressState } from "./state"; import { IkasMerchantSettingsAddressTypeEnum } from "./type"; export declare type IkasMerchantAddress = { addressLine1: string | null; addressLine2: string | null; city: IkasMerchantAddressCity | null; country: IkasMerchantAddressCountry | null; district: IkasMerchantAddressDistrict | null; firstName: string | null; identityNumber: string | null; lastName: string | null; postalCode: string | null; state: IkasMerchantAddressState | null; taxOffice: string | null; title: string | null; type: IkasMerchantSettingsAddressTypeEnum | null; vkn: string | null; };