/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
/** (Optional) If passed, the proof of the authorized ACH agreement terms will be persisted. */
export interface ACHAgreement {
    /** (Required when providing ACH agreement params) The ACH authorization agreement terms. */
    agreementTerms?: string;
    /** (Required when providing ACH agreement params) The first name of the person authorizing the ACH agreement. */
    authorizerFirstName?: string;
    /** (Required when providing ACH agreement params) The last name of the person authorizing the ACH agreement. */
    authorizerLastName?: string;
    /** (Required when providing ACH agreement params) The IP address of the person authorizing the ACH agreement. */
    ipAddress?: string;
    [key: string]: unknown;
}
export declare const aCHAgreementSchema: Schema<ACHAgreement>;
