/**
 * 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 { Show } from './Show';
/**
 *
 * @export
 * @interface SearchFiltersResponseSchema
 */
export interface SearchFiltersResponseSchema {
    /**
     * Array of the results matched with the query.
     * @type {Array<Show>}
     * @memberof SearchFiltersResponseSchema
     */
    result: Array<Show>;
    /**
     * Whether there are more results to be loaded.
     * @type {boolean}
     * @memberof SearchFiltersResponseSchema
     */
    hasMore: boolean;
    /**
     * Cursor value to pass to get next set of the results. An empty string if "hasMore" is "false".
     * @type {string}
     * @memberof SearchFiltersResponseSchema
     */
    nextCursor: string;
}
/**
 * Check if a given object implements the SearchFiltersResponseSchema interface.
 */
export declare function instanceOfSearchFiltersResponseSchema(value: object): boolean;
export declare function SearchFiltersResponseSchemaFromJSON(json: any): SearchFiltersResponseSchema;
export declare function SearchFiltersResponseSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchFiltersResponseSchema;
export declare function SearchFiltersResponseSchemaToJSON(value?: SearchFiltersResponseSchema | null): any;
