import type * as VoyageAI from "../../../api/index.js"; import * as core from "../../../core/index.js"; import type * as serializers from "../../index.js"; import { EmbedRequestEncodingFormat } from "../../types/EmbedRequestEncodingFormat.js"; import { EmbedRequestInput } from "../../types/EmbedRequestInput.js"; import { EmbedRequestInputType } from "../../types/EmbedRequestInputType.js"; import { EmbedRequestOutputDtype } from "../../types/EmbedRequestOutputDtype.js"; export declare const EmbedRequest: core.serialization.Schema; export declare namespace EmbedRequest { interface Raw { input: EmbedRequestInput.Raw; model: string; input_type?: EmbedRequestInputType.Raw | null; truncation?: boolean | null; encoding_format?: EmbedRequestEncodingFormat.Raw | null; output_dimension?: number | null; output_dtype?: EmbedRequestOutputDtype.Raw | null; } }