//#region src/useIframeClickInterceptor.d.ts /** * Broadcasts mousedown events from within an iframe to the parent frame. * Called in the client application (inside the iframe). * Note: EditorStateManager.start() already sets this up in client mode. * This hook exists for explicit / standalone use cases. */ declare const useIframeClickInterceptor: () => void; /** * Merges received iframe click events into the parent's DOM event stream. * Called in the editor (parent frame). */ declare const useIframeClickMerger: () => void; //#endregion export { useIframeClickInterceptor, useIframeClickMerger }; //# sourceMappingURL=useIframeClickInterceptor.d.ts.map