/**
 * 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.
 */
import type { ServiceCountryInfo } from './ServiceCountryInfo';
/**
 * Details of a service.
 * @export
 * @interface DeprecatedServiceInfo
 */
export interface DeprecatedServiceInfo {
    /**
     * Id of the service.
     * @type {string}
     * @memberof DeprecatedServiceInfo
     */
    id: string;
    /**
     * Map of 2-letter country ISO code to details of the service in that country.
     * @type {{ [key: string]: ServiceCountryInfo; }}
     * @memberof DeprecatedServiceInfo
     */
    countries: {
        [key: string]: ServiceCountryInfo;
    };
}
/**
 * Check if a given object implements the DeprecatedServiceInfo interface.
 */
export declare function instanceOfDeprecatedServiceInfo(value: object): boolean;
export declare function DeprecatedServiceInfoFromJSON(json: any): DeprecatedServiceInfo;
export declare function DeprecatedServiceInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeprecatedServiceInfo;
export declare function DeprecatedServiceInfoToJSON(value?: DeprecatedServiceInfo | null): any;
