import type { MessageResponse } from '../types.js'; /** * In-app browser plugin for opening URLs in a native browser. * * @remarks * Allows opening URLs in the native browser instead of the WebView. * * @example * ```ts * import { InAppBrowser } from '@yandeu/js-bridge/lib/plugins/inAppBrowser.js' * * await InAppBrowser.openUrl('https://example.com') * ``` */ export declare const InAppBrowser: { /** * Open a URL in the native browser. * @param url - The URL to open * @returns Response indicating success or failure */ openUrl(url: string): Promise>; }; //# sourceMappingURL=inAppBrowser.d.ts.map