/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema.js';
import { CreditNote } from './creditNote.js';
/** Example schema for an `void_invoice` event */
export interface VoidInvoiceEventData {
    creditNoteAttributes: CreditNote | null;
    /** The memo provided during invoice voiding. */
    memo: string | null;
    /** The amount of the void. */
    appliedAmount: string | null;
    /** The time the refund was applied, in ISO 8601 format, i.e. "2019-06-07T17:20:06Z" */
    transactionTime: string | null;
    /** If true, the invoice is an advance invoice. */
    isAdvanceInvoice: boolean;
    /** The reason for the void. */
    reason: string;
    [key: string]: unknown;
}
export declare const voidInvoiceEventDataSchema: Schema<VoidInvoiceEventData>;
//# sourceMappingURL=voidInvoiceEventData.d.ts.map