export interface LlmE2eTestConfig { apiKey: string; model: string; provider: string; apiKeyEnv: string; baseUrl?: string; timeoutMs: number; maxRetries: number; reasoning?: 'minimal' | 'low' | 'medium' | 'high' | 'xhigh' | false; } export interface RetryOptions { maxRetries?: number; delayMs?: number; } export declare function getLlmE2eConfig(): LlmE2eTestConfig | null; /** @deprecated Use getLlmE2eConfig() instead */ export declare function getMiniMaxConfig(): LlmE2eTestConfig | null; /** @deprecated Use LlmE2eTestConfig instead */ export type MiniMaxTestConfig = LlmE2eTestConfig; //# sourceMappingURL=llm-e2e-config.d.ts.map