import { SQLiteMemoryCore } from './sqlite-memory-core'; import { MemoryIntelligence } from './memory-intelligence'; /** * @class MemoryPerformanceOptimizer * @description Achieves claude-flow parity performance for the memory system through optimization techniques. */ export declare class MemoryPerformanceOptimizer { private dbCore; private memoryIntelligence; private logger; constructor(dbCore: SQLiteMemoryCore, memoryIntelligence: MemoryIntelligence); /** * Runs a comprehensive performance benchmark on the SQLite memory system. * @returns {Promise} Performance metrics. */ runBenchmark(): Promise; /** * Implements intelligent query optimization and caching strategies. * @returns {Promise} */ optimizeQueriesAndCache(): Promise; /** * Sets up performance monitoring and alerting for the memory system. * @returns {Promise} */ setupMonitoringAndAlerting(): Promise; /** * Implements automatic scaling logic based on memory load. * This is conceptual at this layer, as actual scaling involves infrastructure. * @returns {Promise} */ implementAutoScalingLogic(): Promise; } //# sourceMappingURL=memory-performance.d.ts.map