import type { LLMConnector, LLMResult, LLMConfig } from '../types.js'; export declare class ClaudeCodeConnector implements LLMConnector { chat(systemPrompt: string, userMessage: string, config: LLMConfig): Promise; private _exec; }