/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema.js';
import { ExpirationIntervalUnit } from './expirationIntervalUnit.js';
import { OveragePricing } from './overagePricing.js';
import { Price } from './price.js';
import { PricingScheme } from './pricingScheme.js';
export interface CreatePrepaidUsageComponentPricePoint {
    name: string;
    handle?: string;
    /** The identifier for the pricing scheme. See [Product Components](https://help.chargify.com/products/product-components.html) for an overview of pricing schemes. */
    pricingScheme: PricingScheme;
    prices: Price[];
    overagePricing: OveragePricing;
    /** Whether to use the site level exchange rate or define your own prices for each currency if you have multiple currencies defined on the site. */
    useSiteExchangeRate?: boolean;
    /** (only for prepaid usage components) Boolean which controls whether or not remaining units should be rolled over to the next period */
    rolloverPrepaidRemainder?: boolean;
    /** (only for prepaid usage components) Boolean which controls whether or not the allocated quantity should be renewed at the beginning of each period */
    renewPrepaidAllocation?: boolean;
    /** (only for prepaid usage components where rollover_prepaid_remainder is true) The number of `expiration_interval_unit`s after which rollover amounts should expire */
    expirationInterval?: number;
    /** (only for prepaid usage components where rollover_prepaid_remainder is true) A string representing the expiration interval unit for this component, either month or day */
    expirationIntervalUnit?: ExpirationIntervalUnit | null;
    [key: string]: unknown;
}
export declare const createPrepaidUsageComponentPricePointSchema: Schema<CreatePrepaidUsageComponentPricePoint>;
//# sourceMappingURL=createPrepaidUsageComponentPricePoint.d.ts.map