#!/usr/bin/env node
/**
 * Anthropic Setup Command
 *
 * Simple setup for Anthropic Claude integration:
 * - ANTHROPIC_API_KEY (required)
 * - ANTHROPIC_MODEL (optional, with Claude model choices)
 *
 * Follows the same UX patterns as setup-openai and setup-google-ai
 */
import { type ProviderSetupArgv } from "../../lib/types/index.js";
export declare function handleAnthropicSetup(argv: ProviderSetupArgv): Promise<void>;
