/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
import { ChangeInvoiceCollectionMethodEventData } from './changeInvoiceCollectionMethodEventData';
import { Invoice } from './invoice';
import { InvoiceEventType } from './invoiceEventType';
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>;
