/** * Memo Utilities for Dev Tools * * Comparison helper functions for React.memo optimization. * * @since v1.33.4 */ import type { DebugMarker } from '../debug/debug-types.js'; /** * Compare two arrays of DebugMarker for equality. * Compares id, severity, status, title, and file of each marker. */ export declare function markersEqual(prev: DebugMarker[], next: DebugMarker[]): boolean; export interface DevShortcutGroup { title: string; shortcuts: Array<{ key: string; description: string; }>; } export declare function shortcutGroupsEqual(prev: DevShortcutGroup[], next: DevShortcutGroup[]): boolean; //# sourceMappingURL=memo-utils.d.ts.map