import React from 'react'; import { WebViewApi, WebViewProps } from './webViewTypes'; /** * Minimal implementation of react-native-webview[^1]]. * * As opposed to react-native-web-webview[^2], this implementation communicates * through a MessagePort exchanged via an initial handshake via postMessage. * * [^1]: https://github.com/react-native-community/react-native-webview * [^2]: https://github.com/react-native-web-community/react-native-web-webview */ export declare const WebView: React.ForwardRefExoticComponent>;