/**
 * Account information PNZ-API-CentreLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
import { Address } from './address';
export interface Party4 {
    partyId: string;
    name: string;
    emailAddress: string;
    address: Address[];
}
export declare const party4Schema: Schema<Party4>;
