import { Integration } from '@sentry/core'; type WebArgs = (now?: true) => string | null; type ReactNativeArgs = () => Promise; type GetCurrentSessionURLType = WebArgs | ReactNativeArgs; type FullStoryClient = { event(eventName: string, eventProperties: { [key: string]: any; }): void; getCurrentSessionURL?: GetCurrentSessionURLType; }; /** * This integration creates a link from the Sentry Error to the FullStory replay. * It also creates a link from the FullStory event to the Sentry error. * Docs on Sentry SDK integrations are here: https://docs.sentry.io/platforms/javascript/guides/angular/troubleshooting/#dealing-with-integrations */ type Options = { client: FullStoryClient; baseSentryUrl?: string; }; declare function fullStoryIntegration(sentryOrg: string, options: Options): Integration; export { fullStoryIntegration }; //# sourceMappingURL=index.d.ts.map