import { IkasBaseModel } from "../../base"; import { IkasCustomerAttributeValue } from "../attribute/value"; import { IkasCustomerAddressCity } from "./city"; import { IkasCustomerAddressCountry } from "./country"; import { IkasCustomerAddressDistrict } from "./district"; import { IkasCustomerAddressRegion } from "./region"; import { IkasCustomerAddressState } from "./state"; export declare type IkasCustomerAddress = { addressLine1: string; addressLine2: string | null; attributes: IkasCustomerAttributeValue[] | null; company: string | null; firstName: string; identityNumber: string | null; isDefault: boolean | null; lastName: string; phone: string | null; postalCode: string | null; taxNumber: string | null; taxOffice: string | null; title: string; country: IkasCustomerAddressCountry | null; state: IkasCustomerAddressState | null; city: IkasCustomerAddressCity | null; district: IkasCustomerAddressDistrict | null; region: IkasCustomerAddressRegion | null; } & IkasBaseModel;