export declare const API_BASE_URL = "https://api.apparelhub.ai/agents/v1"; export interface Config { /** Undefined when APPARELHUB_API_KEY is unset — the server still starts (so tools/list works), * but any tool call returns `auth_required`. */ apiKey: string | undefined; baseUrl: string; /** Client-side telemetry signal (ticket #19). Off when APPARELHUB_MCP_TELEMETRY=off. */ telemetryEnabled: boolean; userAgent: string; } export declare function loadConfig(env?: NodeJS.ProcessEnv): Config;