/** Indicates the status of an [invoice](entity:Invoice). */ export declare const InvoiceStatus: { readonly Draft: "DRAFT"; readonly Unpaid: "UNPAID"; readonly Scheduled: "SCHEDULED"; readonly PartiallyPaid: "PARTIALLY_PAID"; readonly Paid: "PAID"; readonly PartiallyRefunded: "PARTIALLY_REFUNDED"; readonly Refunded: "REFUNDED"; readonly Canceled: "CANCELED"; readonly Failed: "FAILED"; readonly PaymentPending: "PAYMENT_PENDING"; }; export type InvoiceStatus = (typeof InvoiceStatus)[keyof typeof InvoiceStatus];