import { Core, WebViewLoadOptions } from '@dynamic-labs/client'; export type SetupEmbeddedWebViewArgs = { webviewUrl: string; core: Core; webviewDebuggingEnabled?: boolean; /** * Customer-tunable budgets of the webview load engine. Forwarded * verbatim to `createWebViewLoadController`, which owns the defaults. * See `WebViewLoadOptions` for the per-field documentation. */ webviewLoad?: WebViewLoadOptions; }; export declare const setupEmbeddedWebView: ({ webviewUrl, core, webviewDebuggingEnabled, webviewLoad, }: SetupEmbeddedWebViewArgs) => (() => void);