/**
 * PostNL Ecommerce APIsLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
export interface CpcResponse {
    /** City of requested address */
    city?: string;
    /** Postalcode of requested address */
    postalCode?: string;
    /** Street of requested address */
    streetName?: string;
    /** Housenumber of requested address */
    houseNumber?: number;
    /** Housenumber addition of requested address if applicable */
    houseNumberAddition?: string;
    /** Full formatted address according to PostNL standard (returns each line as a separate string) */
    formattedAddress?: string[];
}
export declare const cpcResponseSchema: Schema<CpcResponse>;
