/**
 * This file was auto-generated by Fern from our API Definition.
 */
/**
 * The data type for the embeddings to be returned. Defaults to `float`.  Other options: `int8`, `uint8`, `binary`, `ubinary`. `float` is supported for all models.  `int8`, `uint8`, `binary`, and `ubinary` are supported by `voyage-3-large` and `voyage-code-3`.  Please see our guide for more details about output data types.
 */
export declare type EmbedRequestOutputDtype = "float" | "int8" | "uint8" | "binary" | "ubinary";
export declare const EmbedRequestOutputDtype: {
    readonly Float: "float";
    readonly Int8: "int8";
    readonly Uint8: "uint8";
    readonly Binary: "binary";
    readonly Ubinary: "ubinary";
};
