/**
 * Pinecone Inference 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.
 */
import { DenseEmbedding } from './DenseEmbedding';
import { SparseEmbedding } from './SparseEmbedding';
/**
 * @type Embedding
 * Embedding of a single input
 * @export
 */
export type Embedding = {
    vectorType: 'dense';
} & DenseEmbedding | {
    vectorType: 'sparse';
} & SparseEmbedding;
export declare function EmbeddingFromJSON(json: any): Embedding;
export declare function EmbeddingFromJSONTyped(json: any, ignoreDiscriminator: boolean): Embedding;
export declare function EmbeddingToJSON(value?: Embedding | null): any;
