import React from 'react'; import type { DOMProps } from './dom.types'; import ExpoDomWebView from './webview/ExpoDOMWebView'; import RNWebView from './webview/RNWebView'; type RawWebViewProps = React.ComponentProps> & React.ComponentProps>; interface Props { children?: any; dom?: DOMProps; filePath: string; ref: React.Ref; [propName: string]: unknown; } declare const RawWebView: React.ForwardRefExoticComponent & React.RefAttributes>; export declare function resolveWebView(useExpoDOMWebView: boolean): React.ForwardRefExoticComponent; export default RawWebView; //# sourceMappingURL=webview-wrapper.d.ts.map