/**
 * Pinecone Data 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-01
 * 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 request for the `upsert` operation.
 * @export
 * @interface UpsertRecord
 */
export interface UpsertRecord {
    /**
     * The unique ID of the record to upsert. Note that `id` can be used as an alias for `_id`.
     * @type {string}
     * @memberof UpsertRecord
     */
    id: string;
}
/**
 * Check if a given object implements the UpsertRecord interface.
 */
export declare function instanceOfUpsertRecord(value: object): boolean;
export declare function UpsertRecordFromJSON(json: any): UpsertRecord;
export declare function UpsertRecordFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpsertRecord;
export declare function UpsertRecordToJSON(value?: UpsertRecord | null): any;
