/**
 * 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 60 countries!
 *
 * The version of the OpenAPI document: 4.1.0
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * Type of the change.
 * @export
 */
export declare const ChangeType: {
    readonly New: "new";
    readonly Removed: "removed";
    readonly Updated: "updated";
    readonly Expiring: "expiring";
    readonly Upcoming: "upcoming";
};
export type ChangeType = typeof ChangeType[keyof typeof ChangeType];
export declare function instanceOfChangeType(value: any): boolean;
export declare function ChangeTypeFromJSON(json: any): ChangeType;
export declare function ChangeTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChangeType;
export declare function ChangeTypeToJSON(value?: ChangeType | null): any;
