/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
import { ReactivationCharge } from './reactivationCharge';
/** These values are only applicable to subscriptions using calendar billing */
export interface ReactivationBilling {
    /** You may choose how to handle the reactivation charge for that subscription: 1) `prorated` A prorated charge for the product price will be attempted for to complete the period 2) `immediate` A full-price charge for the product price will be attempted immediately 3) `delayed` A full-price charge for the product price will be attempted at the next renewal */
    reactivationCharge?: ReactivationCharge;
    [key: string]: unknown;
}
export declare const reactivationBillingSchema: Schema<ReactivationBilling>;
