/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema.js';
import { RenewalPreviewComponentComponentId } from './containers/renewalPreviewComponentComponentId.js';
import { RenewalPreviewComponentPricePointId } from './containers/renewalPreviewComponentPricePointId.js';
export interface RenewalPreviewComponent {
    /** Either the component's Chargify id or its handle prefixed with `handle:` */
    componentId?: RenewalPreviewComponentComponentId;
    /**
     * The quantity for which you wish to preview billing. This is useful if you want to preview a predicted, higher usage value than is currently present on the subscription.
     * This quantity represents:
     * - Whether or not an on/off component is enabled - use 0 for disabled or 1 for enabled
     * - The desired allocated_quantity for a quantity-based component
     * - The desired unit_balance for a metered component
     * - The desired metric quantity for an events-based component
     */
    quantity?: number;
    /** Either the component price point's Chargify id or its handle prefixed with `handle:` */
    pricePointId?: RenewalPreviewComponentPricePointId;
    [key: string]: unknown;
}
export declare const renewalPreviewComponentSchema: Schema<RenewalPreviewComponent>;
//# sourceMappingURL=renewalPreviewComponent.d.ts.map