/**
 * Pinecone Control Plane API
 * Pinecone is a vector database that makes it easy to search and retrieve billions of high-dimensional vectors.
 *
 * The version of the OpenAPI document: 2025-04
 * Contact: support@pinecone.io
 *
 * 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 { PaginationResponse } from './PaginationResponse';
import type { RestoreJobModel } from './RestoreJobModel';
/**
 * The list of restore jobs that exist in the project.
 * @export
 * @interface RestoreJobList
 */
export interface RestoreJobList {
    /**
     *
     * @type {Array<RestoreJobModel>}
     * @memberof RestoreJobList
     */
    data: Array<RestoreJobModel>;
    /**
     *
     * @type {PaginationResponse}
     * @memberof RestoreJobList
     */
    pagination?: PaginationResponse;
}
/**
 * Check if a given object implements the RestoreJobList interface.
 */
export declare function instanceOfRestoreJobList(value: object): boolean;
export declare function RestoreJobListFromJSON(json: any): RestoreJobList;
export declare function RestoreJobListFromJSONTyped(json: any, ignoreDiscriminator: boolean): RestoreJobList;
export declare function RestoreJobListToJSON(value?: RestoreJobList | null): any;
