import { OrientedBoundingBox } from "../bounding-box"; import { MMLColor } from "../color"; import { GraphicsAdapter } from "../graphics"; import { MElement } from "./MElement"; import { TransformableElement } from "./TransformableElement"; export type MSphereProps = { radius: number; color: MMLColor; opacity: number; castShadows: boolean; }; export declare class Sphere extends TransformableElement { static tagName: string; props: MSphereProps; private sphereAnimatedAttributeHelper; private collideableHelper; private clickableHelper; private static attributeHandler; private sphereGraphics; protected enable(): void; protected disable(): void; getContentBounds(): OrientedBoundingBox | null; static get observedAttributes(): Array; constructor(); addSideEffectChild(child: MElement): void; removeSideEffectChild(child: MElement): void; parentTransformed(): void; isClickable(): boolean; attributeChangedCallback(name: string, oldValue: string | null, newValue: string): void; connectedCallback(): void; disconnectedCallback(): void; } //# sourceMappingURL=Sphere.d.ts.map