/** * Heap Profiler Utility * * Provides functionality for generating and managing V8 heap snapshots * for memory leak analysis. */ export interface HeapDumpOptions { directory?: string; prefix?: string; } export declare class HeapProfiler { private logger; /** * Create a new heap dump */ createHeapSnapshot(options?: HeapDumpOptions): string; } export declare function createHeapSnapshot(options?: HeapDumpOptions): string; export declare function getHeapProfiler(): HeapProfiler; //# sourceMappingURL=heap-profiler.d.ts.map