import type Route from '@ember/routing/route'; import type { BrowserOptions } from '@sentry/browser'; import type { Client } from '@sentry/core'; /** * Initialize the Sentry SDK for Ember. */ export declare function init(_runtimeConfig?: BrowserOptions): Client | undefined; type RouteConstructor = new (...args: ConstructorParameters) => Route; export declare const instrumentRoutePerformance: (BaseRoute: T) => T; export * from '@sentry/browser'; /** * Ember-specific browser tracing integration */ export { browserTracingIntegration } from './utils/browserTracingIntegration';