/**
 * fastcomments
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 0.0.0
 *
 *
 * 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 { APIStatus } from './APIStatus';
import type { GifSearchResponseImagesInnerInner } from './GifSearchResponseImagesInnerInner';
/**
 *
 * @export
 * @interface GetGifsTrendingResponse
 */
export interface GetGifsTrendingResponse {
    /**
     *
     * @type {Array<Array<GifSearchResponseImagesInnerInner>>}
     * @memberof GetGifsTrendingResponse
     */
    images: Array<Array<GifSearchResponseImagesInnerInner>>;
    /**
     *
     * @type {APIStatus}
     * @memberof GetGifsTrendingResponse
     */
    status: APIStatus;
    /**
     *
     * @type {string}
     * @memberof GetGifsTrendingResponse
     */
    code: string;
}
/**
 * Check if a given object implements the GetGifsTrendingResponse interface.
 */
export declare function instanceOfGetGifsTrendingResponse(value: object): value is GetGifsTrendingResponse;
export declare function GetGifsTrendingResponseFromJSON(json: any): GetGifsTrendingResponse;
export declare function GetGifsTrendingResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetGifsTrendingResponse;
export declare function GetGifsTrendingResponseToJSON(json: any): GetGifsTrendingResponse;
export declare function GetGifsTrendingResponseToJSONTyped(value?: GetGifsTrendingResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetGifsTrendingResponse.d.ts.map