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