/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema.js';
import { PrepaymentMethod } from './prepaymentMethod.js';
export interface Prepayment {
    id: number;
    subscriptionId: number;
    amountInCents: bigint;
    remainingAmountInCents: bigint;
    refundedAmountInCents?: bigint;
    details?: string;
    external: boolean;
    memo: string;
    /** The payment type of the prepayment. */
    paymentType?: PrepaymentMethod;
    createdAt: string;
    [key: string]: unknown;
}
export declare const prepaymentSchema: Schema<Prepayment>;
//# sourceMappingURL=prepayment.d.ts.map