export declare enum InvoiceStatus {
    PENDING = 0,
    PAID = 1,
    CANCELLED = 2
}
