export interface MemoryUsage { rss: string; heapTotal: string; heapUsed: string; external: string; } export declare function getMemoryUsage(): MemoryUsage; export declare function isMemoryUsageCritical(limit: number): boolean; export declare function forceGarbageCollection(): Promise; //# sourceMappingURL=memory-management.utils.d.ts.map