/**
 * config.ts
 *
 * Centralizes configuration management, loading environment variables
 * and providing defaults for all hub bridge settings.
 */
import type { Implementation } from '@modelcontextprotocol/sdk/types.js';
type ClientInfo = Implementation;
export declare const REMOTE_MCP_URL: string;
export declare const CLIENT_ID: string;
export declare const NO_LOGIN: boolean;
export declare const NO_AUTH_CAPTURE: boolean;
export declare const CALLBACK_PORT: number;
export declare const LOCAL_SERVER_INFO: {
    name: string;
    version: "0.1.0";
};
export declare const REMOTE_CLIENT_INFO: ClientInfo;
export declare const BRIDGE_CLIENT_CAPABILITIES: {
    tools: {
        listChanged: boolean;
    };
    prompts: {
        listChanged: boolean;
    };
};
export declare const CONFIG_FILE = "~/.civic/hub-bridge-config.json";
export {};
//# sourceMappingURL=index.d.ts.map