/**
 * Account and Transaction API SpecificationLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
import { AccountAccessConsentResponseModel } from './accountAccessConsentResponseModel';
import { Links } from './links';
import { Meta } from './meta';
import { Risk } from './risk';
export interface AccountAccessConsentPOSTresponse {
    data: AccountAccessConsentResponseModel;
    /** The Risk section is sent by the initiating party to the API Provider. It is used to specify additional details for risk scoring. */
    risk: Risk;
    /** Links relevant to the payload */
    links: Links;
    meta: Meta;
}
export declare const accountAccessConsentPOSTresponseSchema: Schema<AccountAccessConsentPOSTresponse>;
