import { BrowserPlugin } from '@snowplow/browser-tracker-core'; type WebViewPluginOptions = { /** * Provide a list of tracker namespaces to forward events to. * By default, the events will be forwarded to the default mobile tracker. */ trackerNamespaces?: string[]; }; /** * Forwards events to Snowplow mobile trackers running in a WebView. * @param configuration - Configuration. Specify certain tracker namespaces to forward events to. */ declare function WebViewPlugin(configuration?: WebViewPluginOptions): BrowserPlugin; export { WebViewPlugin };