/**
 * Account information PNZ-API-CentreLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
import { DeliveryAddress } from './deliveryAddress';
import { GeoLocation } from './geoLocation';
export interface Risk {
    endUserAppName: string;
    endUserAppVersion: string;
    paymentContextCode: string;
    merchantName: string;
    merchantNZBN: string;
    merchantCategoryCode: string;
    merchantCustomerIdentification: string;
    geoLocation: GeoLocation;
    deliveryAddress: DeliveryAddress;
}
export declare const riskSchema: Schema<Risk>;
