/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema.js';
import { ChangeInvoiceCollectionMethodEventData } from './changeInvoiceCollectionMethodEventData.js';
import { Invoice } from './invoice.js';
import { InvoiceEventType } from './invoiceEventType.js';
export interface ChangeInvoiceCollectionMethodEvent {
    id: bigint;
    timestamp: string;
    invoice: Invoice;
    eventType: InvoiceEventType;
    /** Example schema for an `change_invoice_collection_method` event */
    eventData: ChangeInvoiceCollectionMethodEventData;
    [key: string]: unknown;
}
export declare const changeInvoiceCollectionMethodEventSchema: Schema<ChangeInvoiceCollectionMethodEvent>;
//# sourceMappingURL=changeInvoiceCollectionMethodEvent.d.ts.map