import { SphereGeometry } from "three";
import Primitive from "../core/Primitive";
import sphereShape from "../core/PhysicsObjectManager/cannon/shapes/sphereShape";
export declare const sphereGeometry: SphereGeometry;
export default class Sphere extends Primitive {
    static componentName: string;
    protected _physicsShape: typeof sphereShape;
    constructor();
}
