/** * SMI-689: Memory Profiler Utilities * * Utility functions for memory profiling. */ /** * Format bytes to human-readable string * * @param bytes - Number of bytes to format * @returns Human-readable string (e.g., "1.5 MB") */ export declare function formatBytes(bytes: number): string; /** * Force garbage collection if available */ export declare function forceGC(): void; //# sourceMappingURL=utils.d.ts.map