/**
 * 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.
 */
/**
 * Horizontal image of a show.
 * @export
 * @interface VerticalImage
 */
export interface VerticalImage {
    /**
     * Link to the 240px wide version of the image.
     * @type {string}
     * @memberof VerticalImage
     */
    w240: string;
    /**
     * Link to the 360px wide version of the image.
     * @type {string}
     * @memberof VerticalImage
     */
    w360: string;
    /**
     * Link to the 480px wide version of the image.
     * @type {string}
     * @memberof VerticalImage
     */
    w480: string;
    /**
     * Link to the 600px wide version of the image.
     * @type {string}
     * @memberof VerticalImage
     */
    w600: string;
    /**
     * Link to the 720px wide version of the image.
     * @type {string}
     * @memberof VerticalImage
     */
    w720: string;
}
/**
 * Check if a given object implements the VerticalImage interface.
 */
export declare function instanceOfVerticalImage(value: object): boolean;
export declare function VerticalImageFromJSON(json: any): VerticalImage;
export declare function VerticalImageFromJSONTyped(json: any, ignoreDiscriminator: boolean): VerticalImage;
export declare function VerticalImageToJSON(value?: VerticalImage | null): any;
