import type { LlmDecision } from '../types.js'; export interface LlmDecisionOptions { provider?: 'anthropic' | 'openclaw'; anthropicApiKey?: string; defaultModel?: string; gatewayUrl?: string; gatewayToken?: string; } /** * Create an LlmDecision client based on the given options. * * Auto-detection (when `provider` is omitted): * - ANTHROPIC_API_KEY env var set → AnthropicLlmDecision * - otherwise → OpenClawLlmDecision (uses HTTP gateway) */ export declare function createLlmDecision(options?: LlmDecisionOptions): LlmDecision; //# sourceMappingURL=factory.d.ts.map