import type { AICurationConfig } from './types.js'; import { LLMService } from './llm-provider.js'; /** * Create an LLMService with the appropriate provider based on config and environment. * Auto-detect priority: ANTHROPIC_API_KEY → Ollama → OPENROUTER_API_KEY → null */ export declare function createLLMService(config: AICurationConfig, anthropicKey?: string, openrouterKey?: string): Promise; //# sourceMappingURL=llm-factory.d.ts.map