import Primitive from "../core/Primitive";
import torusShape from "../core/PhysicsObjectManager/cannon/shapes/torusShape";
export default class Torus extends Primitive {
    static componentName: string;
    protected _physicsShape: typeof torusShape;
    constructor();
}
