import type { Provider, ProviderConfig, ProviderRequest, ProviderResponse } from "./ProviderTypes.js"; export declare class ClaudeCliProvider implements Provider { private readonly config; /** Driven through the claude CLI's text interface; no structured tool calls. */ readonly supportsToolCalls = false; name: string; constructor(config: ProviderConfig); generate(request: ProviderRequest): Promise; } //# sourceMappingURL=ClaudeCliProvider.d.ts.map