/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema.js';
import { InvoiceStatus } from './invoiceStatus.js';
export interface PaidInvoice {
    /** The uid of the paid invoice */
    invoiceId?: string;
    /** The current status of the invoice. See [Invoice Statuses](https://maxio.zendesk.com/hc/en-us/articles/24252287829645-Advanced-Billing-Invoices-Overview#invoice-statuses) for more. */
    status?: InvoiceStatus;
    /** The remaining due amount on the invoice */
    dueAmount?: string;
    /** The total amount paid on this invoice (including any prior payments) */
    paidAmount?: string;
    [key: string]: unknown;
}
export declare const paidInvoiceSchema: Schema<PaidInvoice>;
//# sourceMappingURL=paidInvoice.d.ts.map