import React, { CSSProperties } from 'react'; export interface MyWebviewProps { __compId?: string; getWebviewApis?: (e: MyWebviewProps['__compId'], opts: Record) => void; onMessage?: React.FC; title?: string; src?: { type: 'url' | 'bote'; url?: string; tenantId?: string; botId?: string; }; visible: boolean; style?: CSSProperties; backgroundType?: any; appId?: string; getEngineApis?: any; } declare const Webview: React.ForwardRefExoticComponent>; export default Webview;