import { OrientedBoundingBox } from "../bounding-box"; import { GraphicsAdapter } from "../graphics"; import { MElement } from "./MElement"; import { TransformableElement } from "./TransformableElement"; export type MImageProps = { src: string | null; width: number | null; height: number | null; opacity: number; castShadows: boolean; emissive: number; }; export declare class Image extends TransformableElement { static tagName: string; props: MImageProps; private imageAnimatedAttributeHelper; private collideableHelper; private clickableHelper; private static attributeHandler; private imageGraphics; protected enable(): void; protected disable(): void; static get observedAttributes(): Array; constructor(); getContentBounds(): OrientedBoundingBox | null; 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=Image.d.ts.map