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<typeof Route>) => Route;
export declare const instrumentRoutePerformance: <T extends RouteConstructor>(BaseRoute: T) => T;
export * from '@sentry/browser';
/**
 *  Ember-specific browser tracing integration
 */
export { browserTracingIntegration } from './utils/browserTracingIntegration';
