/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
import { UpdatePriceEndingQuantity } from './containers/updatePriceEndingQuantity';
import { UpdatePriceStartingQuantity } from './containers/updatePriceStartingQuantity';
import { UpdatePriceUnitPrice } from './containers/updatePriceUnitPrice';
export interface UpdatePrice {
    id?: number;
    endingQuantity?: UpdatePriceEndingQuantity;
    /** The price can contain up to 8 decimal places. i.e. 1.00 or 0.0012 or 0.00000065 */
    unitPrice?: UpdatePriceUnitPrice;
    destroy?: boolean;
    startingQuantity?: UpdatePriceStartingQuantity;
    [key: string]: unknown;
}
export declare const updatePriceSchema: Schema<UpdatePrice>;
