import * as z from "zod/v3";
import { OpenEnum } from "../../types/enums.js";
/**
 * Available options to the prompt_mode argument on the chat completion endpoint.
 *
 * @remarks
 * Values represent high-level intent. Assignment to actual SPs is handled internally.
 * System prompt may include knowledge cutoff date, model capabilities, tone to use, safety guidelines, etc.
 */
export declare const MistralPromptMode: {
    readonly Reasoning: "reasoning";
};
/**
 * Available options to the prompt_mode argument on the chat completion endpoint.
 *
 * @remarks
 * Values represent high-level intent. Assignment to actual SPs is handled internally.
 * System prompt may include knowledge cutoff date, model capabilities, tone to use, safety guidelines, etc.
 */
export type MistralPromptMode = OpenEnum<typeof MistralPromptMode>;
/** @internal */
export declare const MistralPromptMode$outboundSchema: z.ZodType<string, z.ZodTypeDef, MistralPromptMode>;
//# sourceMappingURL=mistralpromptmode.d.ts.map