/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema.js';
export interface PayerAttributes {
    firstName?: string;
    lastName?: string;
    email?: string;
    ccEmails?: string;
    organization?: string;
    reference?: string;
    address?: string;
    address2?: string;
    city?: string;
    state?: string;
    zip?: string;
    country?: string;
    phone?: string;
    locale?: string;
    vatNumber?: string;
    taxExempt?: boolean;
    taxExemptReason?: string;
    /** (Optional) A set of key/value pairs representing custom fields and their values. Metafields will be created “on-the-fly” in your site for a given key, if they have not been created yet. */
    metafields?: Record<string, string>;
    [key: string]: unknown;
}
export declare const payerAttributesSchema: Schema<PayerAttributes>;
//# sourceMappingURL=payerAttributes.d.ts.map