import type { Mechanism, WrappedFunction } from '@sentry/core'; import { GLOBAL_OBJ } from '@sentry/core'; export declare const WINDOW: typeof GLOBAL_OBJ & Window; /** * @hidden */ export declare function shouldIgnoreOnError(): boolean; /** * @hidden */ export declare function ignoreNextOnError(): void; type WrappableFunction = Function; export declare function wrap(fn: T, options?: { mechanism?: Mechanism; }): WrappedFunction; export declare function wrap(fn: NonFunction, options?: { mechanism?: Mechanism; }): NonFunction; /** * Get HTTP request data from the current page. */ export declare function getHttpRequestData(): { url: string; headers: Record; }; export {}; //# sourceMappingURL=helpers.d.ts.map