import { HydrationHandlers } from '@retikz/render/hydration'; import { ReactNode } from 'react'; import { EmbeddableTier2Adapter } from '../protocol'; /** * 按元素 `id` 收集水合 handler props * @description 返回 `{ [id]: { click, pointerEnter, ... } }` 注册表,供 `` 在渲染后绑定事件。 * 带 handler 但无 `id` 会跳过并在开发环境告警;重复 `id` 会合并不同事件,同一事件以后出现者覆盖 */ export declare const collectHydrationHandlers: (children: ReactNode, embeddables?: ReadonlyArray) => HydrationHandlers; //# sourceMappingURL=collect-hydration-handlers.d.ts.map