/**
 * 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 { EmbedByTypeResponseEmbeddings } from "./EmbedByTypeResponseEmbeddings";
import { ApiMeta } from "./ApiMeta";
export declare const EmbedByTypeResponse: core.serialization.ObjectSchema<serializers.EmbedByTypeResponse.Raw, Cohere.EmbedByTypeResponse>;
export declare namespace EmbedByTypeResponse {
    interface Raw {
        id: string;
        embeddings: EmbedByTypeResponseEmbeddings.Raw;
        texts: string[];
        meta?: ApiMeta.Raw | null;
    }
}
