import { OrientedBoundingBox } from "../bounding-box"; import { MMLColor } from "../color"; import { GraphicsAdapter } from "../graphics"; import { MElement } from "./MElement"; import { TransformableElement } from "./TransformableElement"; export type MCubeProps = { width: number; height: number; depth: number; color: MMLColor; opacity: number; castShadows: boolean; }; export declare class Cube extends TransformableElement { static tagName: string; private cubeGraphics; props: MCubeProps; private cubeAnimatedAttributeHelper; private collideableHelper; private clickableHelper; private static attributeHandler; 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=Cube.d.ts.map