import { BaseModel } from './base-model';
/**
 * Represents a price for an item
 */
export declare class Price extends BaseModel {
    private _priceAmount;
    private _currencyID;
    get priceAmount(): number;
    set priceAmount(value: number);
    get currencyID(): string;
    set currencyID(value: string);
    /**
     * Converts the price to a JSON representation
     */
    toJSON(): any;
}
