import * as THREE from 'three'; type ForceHandler = () => void; type CancelFunction = () => void; interface ForceApplicationParams { bodyId: number; targetPosition: THREE.Vector3; forceScale?: number; applicationPoint?: THREE.Vector3; } export declare function useForceManager(): [ (handler: ForceHandler) => CancelFunction, () => void, (params: ForceApplicationParams) => void ]; export {};