/**
 * AdvancedBilling
 *
 * This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
export interface CreateCurrencyPrice {
    /** ISO code for a currency defined on the site level */
    currency?: string;
    /** Price for the price level in this currency */
    price?: number;
    /** ID of the price that this corresponds with */
    priceId?: number;
    [key: string]: unknown;
}
export declare const createCurrencyPriceSchema: Schema<CreateCurrencyPrice>;
