/**
 * This file was auto-generated by Fern from our API Definition.
 */
import * as serializers from "../index";
import * as Cohere from "../../api/index";
import * as core from "../../core";
import { EmbedFloatsResponse } from "./EmbedFloatsResponse";
import { EmbedByTypeResponse } from "./EmbedByTypeResponse";
export declare const EmbedResponse: core.serialization.Schema<serializers.EmbedResponse.Raw, Cohere.EmbedResponse>;
export declare namespace EmbedResponse {
    type Raw = EmbedResponse.EmbeddingsFloats | EmbedResponse.EmbeddingsByType;
    interface EmbeddingsFloats extends EmbedFloatsResponse.Raw {
        response_type: "embeddings_floats";
    }
    interface EmbeddingsByType extends EmbedByTypeResponse.Raw {
        response_type: "embeddings_by_type";
    }
}
