import type { Object3D } from 'three';
export declare const usePointerControls: () => {
    addInteractiveObject: (object: Object3D, events: Record<string, (arg: unknown) => void>) => void;
    removeInteractiveObject: (object: Object3D) => void;
};
