/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema.js';
import { CreatePrepaymentMethod } from './createPrepaymentMethod.js';
export interface CreatePrepayment {
    amount: number;
    details: string;
    memo: string;
    /** :- When the `method` specified is `"credit_card_on_file"`, the prepayment amount will be collected using the default credit card payment profile and applied to the prepayment account balance. This is especially useful for manual replenishment of prepaid subscriptions. */
    method: CreatePrepaymentMethod;
    paymentProfileId?: number;
    [key: string]: unknown;
}
export declare const createPrepaymentSchema: Schema<CreatePrepayment>;
//# sourceMappingURL=createPrepayment.d.ts.map