import { BrowserPlugin } from '@snowplow/browser-tracker-core'; declare global { interface Window { mozPerformance: any; msPerformance: any; webkitPerformance: any; } } /** * Adds Performance Timing context to events * * @remarks * May not be fully populated when inital Page View fires * Often a good idea to take the latest performance timing context * for a given page view id when analysing in the warehouse * * @deprecated Use @snowplow/browser-plugin-performance-navigation-timing instead */ declare function PerformanceTimingPlugin(): BrowserPlugin; export { PerformanceTimingPlugin };