import { Component, ReactElement } from "react"; interface IProps { activeTab: string; currentUrl: string; onLoadEnd: () => void; onLoadStart: () => void; } declare class WebView extends Component { shouldComponentUpdate(nextProps: Readonly): boolean; componentDidUpdate(prevProps: Readonly, _: Readonly<{}>): void; render(): ReactElement; } export default WebView;