import { TAllPhysicsShapeParams, TPhysicsBodyEntities, TPhysicsBodyParams, TPhysicsShapeParams } from '../Models'; import { World, ColliderDesc } from '@dimforge/rapier3d'; import { TOptional } from '@hellpig/anarchy-shared/Utils'; export declare function createPhysicsBodyEntities(params: TPhysicsBodyParams, world: World): TPhysicsBodyEntities; export declare function getColliderDesc(params: TPhysicsBodyParams): ColliderDesc | never; export declare function paramsToMeters(params: TPhysicsShapeParams): TOptional;