//#region src/hooks/useTapHost.d.ts declare namespace useTapHost { interface Result { /** * The current render output of the host resource. */ value: R; /** * Commits the host's pending render result. Pass to a deps-less * useEffect in a descendant component to land the commit ahead of * the descendants' own effects; the first instance to run wins. A * plain callback (not a hook) so React Compiler can compile the * consumer; its identity changes on every host render. */ effects: () => void; } } declare const useTapHost: (callback: () => R) => useTapHost.Result; //#endregion export { useTapHost }; //# sourceMappingURL=useTapHost.d.ts.map