import type { MapInteractionState } from "@trackunit/react-map-adapter-shared"; import type { ReactElement } from "react"; type InteractionDisplayProps = { interaction: MapInteractionState; label?: string; }; /** Formatted selected/hovered entity display with outlined entity blocks showing all fields. */ export declare const InteractionDisplay: ({ interaction, label }: InteractionDisplayProps) => ReactElement; export {};