/**
 * 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.
 */
/**
 * Details of a genre
 * @export
 * @interface Genre
 */
export interface Genre {
    /**
     * Id of the genre
     * @type {number}
     * @memberof Genre
     */
    id: number;
    /**
     * Name of the genre
     * @type {string}
     * @memberof Genre
     */
    name: string;
}
/**
 * Check if a given object implements the Genre interface.
 */
export declare function instanceOfGenre(value: object): boolean;
export declare function GenreFromJSON(json: any): Genre;
export declare function GenreFromJSONTyped(json: any, ignoreDiscriminator: boolean): Genre;
export declare function GenreToJSON(value?: Genre | null): any;
