import type { GraphData } from '../parser/index.js'; export interface RuntimeRenderEvent { type: 'render'; componentName: string; componentId?: string; renderCount: number; timestamp: number; isWasted?: boolean; } export interface RuntimeGraphIndex { duplicateComponentLabels: string[]; uniqueComponentIdsByLabel: Map; } export declare function buildRuntimeGraphIndex(graph: GraphData): RuntimeGraphIndex; export declare function resolveRuntimeRenderEvent(event: RuntimeRenderEvent, index: RuntimeGraphIndex): RuntimeRenderEvent; //# sourceMappingURL=resolve-events.d.ts.map