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