/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
import { CurrencyPrice } from './currencyPrice';
import { IntervalUnit } from './intervalUnit';
export interface OfferItem {
    componentId?: number;
    pricePointId?: number;
    startingQuantity?: string;
    editable?: boolean;
    componentUnitPrice?: string;
    componentName?: string;
    pricePointName?: string;
    currencyPrices?: CurrencyPrice[];
    /** 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;
    [key: string]: unknown;
}
export declare const offerItemSchema: Schema<OfferItem>;
