import type React from 'react'; export interface WebViewProps { readonly dataset?: DOMStringMap; id?: string; src: string; onMessage?: (e: any) => void; } export declare const WebView: React.ComponentType;