import { BrowserHackleClient } from "../../index.browser"; interface InstallAppWebViewInAppMessageBridgeParams { targetWindow: Window; createClientBySdkKey: (sdkKey: string) => BrowserHackleClient; } /** * @param targetWindow - 실행되는 런타임의 window 객체 * @param createClientBySdkKey - sdkKey를 받아서 {@link BrowserHackleClient}를 생성하는 함수, Hackle App SDK Key가 사용됩니다. * @description targetWindow에 {@link AppWebViewInAppMessageBridge}를 설치합니다. */ export declare function installAppWebViewInAppMessageBridge({ targetWindow, createClientBySdkKey }: InstallAppWebViewInAppMessageBridgeParams): void; export {};