//#region src/hooks/useTapRoot.d.ts declare namespace useTapRoot { type Unsubscribe = () => void; interface Root { /** * Get the current value of the root. */ getValue(): R; /** * Subscribe to the root. */ subscribe(listener: () => void): Unsubscribe; } } declare const useTapRoot: (render: () => R) => useTapRoot.Root; //#endregion export { useTapRoot }; //# sourceMappingURL=useTapRoot.d.ts.map