/**
 * This file was auto-generated by Fern from our API Definition.
 */
import * as Cohere from "../index";
export declare type EmbedResponse = Cohere.EmbedResponse.EmbeddingsFloats | Cohere.EmbedResponse.EmbeddingsByType;
export declare namespace EmbedResponse {
    interface EmbeddingsFloats extends Cohere.EmbedFloatsResponse {
        responseType: "embeddings_floats";
    }
    interface EmbeddingsByType extends Cohere.EmbedByTypeResponse {
        responseType: "embeddings_by_type";
    }
}
