import type { OpenCodeCodexOrchConfig } from "../config"; export declare function resolveAgentVariant(config: OpenCodeCodexOrchConfig, agentName?: string): string | undefined; export declare function resolveAgentReasoningEffort(config: OpenCodeCodexOrchConfig, agentName?: string): string | undefined; export declare function resolveVariantForModel(config: OpenCodeCodexOrchConfig, agentName: string, currentModel: { providerID: string; modelID: string; }): string | undefined; export declare function applyAgentVariant(config: OpenCodeCodexOrchConfig, agentName: string | undefined, message: { variant?: string; }): void; export declare function applyAgentReasoningEffort(config: OpenCodeCodexOrchConfig, agentName: string | undefined, message: { reasoningEffort?: string; }): void;