export declare const InvoiceStatus: { readonly Draft: "draft"; readonly Open: "open"; readonly Paid: "paid"; readonly Void: "void"; readonly Uncollectible: "uncollectible"; readonly Held: "held"; }; export type InvoiceStatus = (typeof InvoiceStatus)[keyof typeof InvoiceStatus];