import { spotlightBrowserIntegration } from '@sentry/browser'; import type { Integration } from '@sentry/core'; export type SpotlightOptions = Parameters[0]; /** * Use this integration to send errors and transactions to Spotlight. * * When testing on a mobile or simulator, you must set the sidecarUrl to the URL where the Spotlight sidecar is running. * Learn more about spotlight at https://spotlightjs.com * * @param spotlightOptions - Options for the Spotlight integration, URL should be `http://IP:8969/stream` where IP is your private IP address. * @example * import { spotlightIntegration } from '@sentry/capacitor'; * spotlightIntegration({ * sidecarUrl: 'http://192.168.8.150:8969/stream', * }); * * @note Don't forget to allow the port 8969 for TCP in your firewall if you are testing a physical device or a simulator that is on anodther device. */ export declare function spotlightIntegration(spotlightOptions: SpotlightOptions | undefined): Integration; //# sourceMappingURL=spotlight.d.ts.map