export interface MCPConfig { token: string; popularTools: number; maxConcurrency: number; timeoutMs: number; maxRetries: number; backoffBaseMs: number; verbose: boolean; stdio: boolean; } export interface CLIArgs { token?: string; verbose?: boolean; stdio?: boolean; [key: string]: unknown; } export declare function loadConfig(cliArgs?: CLIArgs): MCPConfig; export declare function validateConfig(config: MCPConfig): void; //# sourceMappingURL=env.d.ts.map