/**
 * 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 { EmbedInputType } from "../../../../types/EmbedInputType";
import { EmbeddingType } from "../../../../types/EmbeddingType";
import { V2EmbedRequestTruncate } from "../../types/V2EmbedRequestTruncate";
export declare const V2EmbedRequest: core.serialization.Schema<serializers.V2EmbedRequest.Raw, Cohere.V2EmbedRequest>;
export declare namespace V2EmbedRequest {
    interface Raw {
        texts?: string[] | null;
        images?: string[] | null;
        model: string;
        input_type?: EmbedInputType.Raw | null;
        embedding_types?: EmbeddingType.Raw[] | null;
        truncate?: V2EmbedRequestTruncate.Raw | null;
    }
}
