/**
 * Configuration for the Onyx MCP Server
 */
import { OnyxConfig } from '../types/index.js';
/**
 * Load configuration from environment variables
 * @returns The Onyx configuration
 */
export declare function loadConfig(): OnyxConfig;
/**
 * Server configuration
 */
export declare const SERVER_CONFIG: {
    name: string;
    version: string;
};
/**
 * Debug mode flag
 */
export declare const DEBUG: boolean;
