#!/usr/bin/env node /** * Azure OpenAI Setup Command * * Setup for Azure OpenAI integration: * - AZURE_OPENAI_API_KEY (required) * - AZURE_OPENAI_ENDPOINT (required) * - AZURE_OPENAI_MODEL (optional) * * Follows the same UX patterns as other setup commands */ import { type ProviderSetupArgv } from "../../lib/types/index.js"; export declare function handleAzureSetup(argv: ProviderSetupArgv): Promise;