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