import { OrientedBoundingBox } from "../bounding-box"; import { GraphicsAdapter } from "../graphics"; import { MElement } from "./MElement"; import { TransformableElement } from "./TransformableElement"; export type MChatProbeProps = { debug: boolean; range: number; }; export declare class ChatProbe extends TransformableElement { static tagName: string; private chatProbeGraphics; private registeredScene; private chatProbeAnimatedAttributeHelper; props: MChatProbeProps; private static attributeHandler; static get observedAttributes(): Array; constructor(); protected enable(): void; protected disable(): void; getContentBounds(): OrientedBoundingBox | null; addSideEffectChild(child: MElement): void; removeSideEffectChild(child: MElement): void; parentTransformed(): void; isClickable(): boolean; attributeChangedCallback(name: string, oldValue: string | null, newValue: string): void; trigger(message: string): void; connectedCallback(): void; disconnectedCallback(): void; private registerChatProbe; private unregisterChatProbe; } //# sourceMappingURL=ChatProbe.d.ts.map