/**
 * 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 configuration needed to create a backup of an index.
 * @export
 * @interface CreateBackupRequest
 */
export interface CreateBackupRequest {
    /**
     * The name of the backup.
     * @type {string}
     * @memberof CreateBackupRequest
     */
    name?: string;
    /**
     * A description of the backup.
     * @type {string}
     * @memberof CreateBackupRequest
     */
    description?: string;
}
/**
 * Check if a given object implements the CreateBackupRequest interface.
 */
export declare function instanceOfCreateBackupRequest(value: object): boolean;
export declare function CreateBackupRequestFromJSON(json: any): CreateBackupRequest;
export declare function CreateBackupRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateBackupRequest;
export declare function CreateBackupRequestToJSON(value?: CreateBackupRequest | null): any;
