/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
/**
 * Enum for InvoiceEventType
 */
export declare enum InvoiceEventType {
    IssueInvoice = "issue_invoice",
    ApplyCreditNote = "apply_credit_note",
    CreateCreditNote = "create_credit_note",
    ApplyPayment = "apply_payment",
    ApplyDebitNote = "apply_debit_note",
    CreateDebitNote = "create_debit_note",
    RefundInvoice = "refund_invoice",
    VoidInvoice = "void_invoice",
    VoidRemainder = "void_remainder",
    BackportInvoice = "backport_invoice",
    ChangeInvoiceStatus = "change_invoice_status",
    ChangeInvoiceCollectionMethod = "change_invoice_collection_method",
    RemovePayment = "remove_payment",
    FailedPayment = "failed_payment",
    ChangeChargebackStatus = "change_chargeback_status"
}
/**
 * Schema for InvoiceEventType
 */
export declare const invoiceEventTypeSchema: Schema<InvoiceEventType>;
