/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema.js';
import { BillingSchedule } from './billingSchedule.js';
import { ComponentCustomPrice } from './componentCustomPrice.js';
export interface ActivateEventBasedComponent {
    /** The Chargify id of the price point */
    pricePointId?: number;
    /** Billing schedule settings for component allocations or usages on multi-frequency subscriptions. Use this to start a component's billing period on a custom date instead of aligning with the product charge schedule. */
    billingSchedule?: BillingSchedule;
    /** Create or update custom pricing unique to the subscription. Used in place of `price_point_id`. */
    customPrice?: ComponentCustomPrice;
    [key: string]: unknown;
}
export declare const activateEventBasedComponentSchema: Schema<ActivateEventBasedComponent>;
//# sourceMappingURL=activateEventBasedComponent.d.ts.map