import React from 'react'; interface WebViewProps { style?: any; baseUrl?: string; path?: string; queryParams?: Object; } declare const WebView: ({ style, baseUrl, path, queryParams }: WebViewProps) => React.JSX.Element; export default WebView;