//#region src/utilities/_observe.d.ts /** * Internal helper for observer wrappers (Intersection/Mutation/Resize). * Runs `attach` to start observing, registers `disconnect` with the current * scope, and returns a `Disposable`. */ declare function observe(obs: O, attach: (o: O) => void): Disposable; //#endregion export { observe };