import * as THREE from 'three'; import type { RapierRigidBody } from '@react-three/rapier'; export interface ShootingParams { world: any; camera: THREE.Camera; controls: React.RefObject; dotRef: React.RefObject; shoot: React.RefObject; shootRayDirection: React.RefObject; } export declare function handleShooting({ world, camera, controls, dotRef, shoot, shootRayDirection }: ShootingParams): void;