/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
/** Information about the customer who is owner or recipient the invoiced subscription. */
export interface InvoiceCustomer {
    chargifyId?: number | null;
    firstName?: string;
    lastName?: string;
    organization?: string | null;
    email?: string;
    vatNumber?: string | null;
    reference?: string | null;
    [key: string]: unknown;
}
export declare const invoiceCustomerSchema: Schema<InvoiceCustomer>;
