import { FC } from 'react'; import { WebViewBrowserFeatures } from '../modules/webView/webViewTypes'; interface WebViewWithContextProps { /** URL to embed in the webview. */ url: string; /** @deprecated since 1.0.0-beta2, use `featurePolicy` instead. Features to enable/disable for the WebView. */ browserFeatures?: WebViewBrowserFeatures; /** [Feature policy](https://developer.mozilla.org/en-US/docs/Web/HTTP/Feature_Policy/Using_Feature_Policy#the_iframe_allow_attribute) to use for the iFrame (web only). */ featurePolicy?: string; } export declare const WebViewWithContext: FC; export {};