/*! * CBD MCP Server Configuration * Manages configuration for the CBD Model Context Protocol server */ export interface CBDMCPConfig { server: { name: string; version: string; maxConnections: number; timeout: number; }; database: { path?: string; memory?: boolean; options?: Record; maxVectors?: number; dimension?: number; }; logging: { level: 'debug' | 'info' | 'warn' | 'error'; format: 'json' | 'text'; enabled: boolean; }; performance: { batchSize: number; cacheSize: number; indexOptimizeThreshold: number; }; } /** * Get CBD MCP server configuration with environment variable overrides */ export declare function getConfig(): CBDMCPConfig; /** * Validate configuration values */ export declare function validateConfig(config: CBDMCPConfig): string[]; //# sourceMappingURL=config.d.ts.map