import { Object3D } from 'three'; export declare const add: (...object: Object3D[]) => Object3D; type Callback = (object: Object3D) => void; export declare const addFns: Set; export declare const useOnAdd: (callback: Callback) => void; export {};