export declare const EmbeddingModelEnum: {
    readonly E5Mistral7BInstruct: "e5_mistral_7b_instruct";
    readonly MultilingualE5LargeInstruct: "multilingual_e5_large_instruct";
    readonly Qwen3Embedding4B: "qwen3_embedding_4b";
};
export type EmbeddingModelEnum = (typeof EmbeddingModelEnum)[keyof typeof EmbeddingModelEnum];
