type PerformanceEntryMap = { longtask: PerformanceLongTaskTiming; element: PerformanceElementTiming; event: PerformanceEventTiming; "first-input": PerformanceEventTiming; "largest-contentful-paint": LargestContentfulPaint; "layout-shift": LayoutShift; "long-animation-frame": PerformanceLongAnimationFrameTiming; navigation: PerformanceNavigationTiming; paint: PerformancePaintTiming; }; export declare const ALL_ENTRIES: PerformanceEntry[]; export declare function observe(type: K, callback: (entry: PerformanceEntryMap[K]) => void, options?: PerformanceObserverInit): PerformanceObserver | undefined; export declare function getEntries(type: K): Array; export declare function addEntry(entry: PerformanceEntry): void; export declare function clearEntries(): void; export {};