/**
 * Streaming Availability API
 * Streaming Availability API allows getting streaming availability information of movies and series; and querying the list of available shows on streaming services such as Netflix, Disney+, Apple TV, Max and Hulu across 59 countries!
 *
 * The version of the OpenAPI document: 3.3.1
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * Price of the renting or buying.
 * @export
 * @interface Price
 */
export interface Price {
    /**
     * Numerical amount of the price.
     * @type {string}
     * @memberof Price
     */
    amount: string;
    /**
     * ISO 4217 alphabetic code of the currency.
     * @type {string}
     * @memberof Price
     */
    currency: string;
    /**
     * Formatted price, including both the amount and the currency.
     * @type {string}
     * @memberof Price
     */
    formatted: string;
}
/**
 * Check if a given object implements the Price interface.
 */
export declare function instanceOfPrice(value: object): boolean;
export declare function PriceFromJSON(json: any): Price;
export declare function PriceFromJSONTyped(json: any, ignoreDiscriminator: boolean): Price;
export declare function PriceToJSON(value?: Price | null): any;
