import { SharedBuffers } from "../three-ammo/lib/types"; import { PhysicsPerformanceInfo, PhysicsState } from "./physics-context"; import { MutableRefObject } from "react"; interface PhysicsUpdateProps { physicsState: PhysicsState; sharedBuffersRef: MutableRefObject; threadSafeQueueRef: MutableRefObject<(() => void)[]>; physicsPerformanceInfoRef: MutableRefObject; } export declare function PhysicsUpdate({ physicsState, sharedBuffersRef, threadSafeQueueRef, physicsPerformanceInfoRef, }: PhysicsUpdateProps): null; export {};