/**
 * 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 type { VectorType } from './VectorType';
/**
 * A dense embedding of a single input
 * @export
 * @interface DenseEmbedding
 */
export interface DenseEmbedding {
    /**
     * The dense embedding values.
     * @type {Array<number>}
     * @memberof DenseEmbedding
     */
    values: Array<number>;
    /**
     *
     * @type {VectorType}
     * @memberof DenseEmbedding
     */
    vectorType: VectorType;
}
/**
 * Check if a given object implements the DenseEmbedding interface.
 */
export declare function instanceOfDenseEmbedding(value: object): boolean;
export declare function DenseEmbeddingFromJSON(json: any): DenseEmbedding;
export declare function DenseEmbeddingFromJSONTyped(json: any, ignoreDiscriminator: boolean): DenseEmbedding;
export declare function DenseEmbeddingToJSON(value?: DenseEmbedding | null): any;
