export type DeepSeekReasonEffort = "high" | "max"; export interface DeepSeekThink { type: "enabled" | "disabled"; reasoning_effort?: DeepSeekReasonEffort; } export declare class DeepSeekThinkingBuilder { private typeValue; private reasoningEffortValue?; type(type: "enabled" | "disabled"): this; reasoningEffort(effort: DeepSeekReasonEffort): this; build(): DeepSeekThink; } //# sourceMappingURL=deepseek-thinking.builder.d.ts.map