/**
 * PostNL Ecommerce APIsLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
export interface Address2 {
    /** The city of the pickup location address */
    city?: string;
    /** The country of the pickup location address */
    countrycode?: string;
    /** The house number of the pickup location address */
    houseNr?: number;
    /** The house number extension of the pickup location address */
    houseNrExt?: string;
    /** Additional information about the pickup location */
    remark?: string;
    /** The street of the pickup location address */
    street?: string;
    /** The zipcode of the pickup location address */
    zipcode?: string;
}
export declare const address2Schema: Schema<Address2>;
