/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema.js';
import { IntervalUnit } from './intervalUnit.js';
import { PricingScheme } from './pricingScheme.js';
import { UpdatePrice } from './updatePrice.js';
export interface UpdateComponentPricePoint {
    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;
    /** 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;
    /** Whether or not the price point includes tax */
    taxIncluded?: boolean;
    /** The numerical interval. i.e. an interval of ‘30’ coupled with an interval_unit of day would mean this component price point would renew every 30 days. This property is only available for sites with Multifrequency enabled. */
    interval?: number;
    /** A string representing the interval unit for this component price point, either month or day. This property is only available for sites with Multifrequency enabled. */
    intervalUnit?: IntervalUnit | null;
    prices?: UpdatePrice[];
    [key: string]: unknown;
}
export declare const updateComponentPricePointSchema: Schema<UpdateComponentPricePoint>;
//# sourceMappingURL=updateComponentPricePoint.d.ts.map