import type { Factory } from "./types"; /** * Manages the lifecycle of a THREE.* object instance, making sure it gets disposed once * the component using it is unmounted. */ export declare const useManagedThreeObject: (fn: Factory) => Instance;