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