import { WebViewNavigation } from 'react-native-webview'; export declare enum Action { LoadInApp = 0, LoadInBrowser = 1, Intercept = 2 } type Callbacks = { onIntercept?: (url: string) => void; onLoadUrlInBrowser?: (url: string) => void; }; export declare function makeRequestInterceptor(widgetUrl: string, uiMessageWebviewUrlScheme: string, callbacks: Callbacks): (request: WebViewNavigation) => boolean; export {};