/**
 * 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.
 */
/**
 * The pagination object that is returned with paginated responses.
 * @export
 * @interface PaginationResponse
 */
export interface PaginationResponse {
    /**
     * The token to use to retrieve the next page of results.
     * @type {string}
     * @memberof PaginationResponse
     */
    next: string;
}
/**
 * Check if a given object implements the PaginationResponse interface.
 */
export declare function instanceOfPaginationResponse(value: object): boolean;
export declare function PaginationResponseFromJSON(json: any): PaginationResponse;
export declare function PaginationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginationResponse;
export declare function PaginationResponseToJSON(value?: PaginationResponse | null): any;
