import type { LlmClient, LlmRequest, LlmResponse } from "@slowcook-ai/core"; /** * Anthropic (Claude) adapter implementing the `LlmClient` contract from * `@slowcook-ai/core`. Used by slowcook's agents (refine, testgen) for * simple text-completion. Brew uses `@anthropic-ai/sdk` directly for its * tool-use surface — that's not yet generalised behind the `LlmClient` * interface (see `docs/plans/0.8-llm-adapter-refactor.md` §5). */ export declare class AnthropicClient implements LlmClient { private readonly client; constructor(apiKey: string); complete(args: LlmRequest): Promise; } //# sourceMappingURL=client.d.ts.map