/** * Memory Monitoring Orchestration * High-level utilities for memory monitoring workflow management */ import { MemorySnapshotManager } from './snapshotManager.js'; import { MemoryLeakDetector } from './leakDetector.js'; export declare const memoryMonitor: MemorySnapshotManager; export declare const startMemoryMonitoring: () => void; export declare const checkpointMemory: (label: string) => void; export declare const endMemoryMonitoring: () => void; export declare const detectMemoryLeaks: () => boolean; export { MemorySnapshotManager, MemoryLeakDetector }; //# sourceMappingURL=monitoringOrchestration.d.ts.map