import { OimoWorld } from './World'; import { AnyObject } from '../common/physics'; import { OimoJointOptions } from './interface'; export declare class OimoJoint { private _world; private _joint; get instance(): AnyObject; constructor(oimoWorld: OimoWorld, options: OimoJointOptions); private _init; setMotor(options: { enabled?: boolean; speed?: number; force?: number; }): void; }