/**
 * This file was auto-generated by Fern from our API Definition.
 */
/**
 * One of the Cohere API endpoints that the model can be used with.
 */
export declare type CompatibleEndpoint = "chat" | "embed" | "classify" | "summarize" | "rerank" | "rate" | "generate";
export declare const CompatibleEndpoint: {
    readonly Chat: "chat";
    readonly Embed: "embed";
    readonly Classify: "classify";
    readonly Summarize: "summarize";
    readonly Rerank: "rerank";
    readonly Rate: "rate";
    readonly Generate: "generate";
};
