/** The data type for the embeddings to be returned. Defaults to `float`. Other options: `int8`, `uint8`, `binary`, `ubinary`. */ export declare const ContextualizedEmbedRequestOutputDtype: { readonly Float: "float"; readonly Int8: "int8"; readonly Uint8: "uint8"; readonly Binary: "binary"; readonly Ubinary: "ubinary"; }; export type ContextualizedEmbedRequestOutputDtype = (typeof ContextualizedEmbedRequestOutputDtype)[keyof typeof ContextualizedEmbedRequestOutputDtype];