import React from 'react'; import { TooltipAttribute } from '../../../shared/models/models.tooltip'; import './tooltip.css'; /** * Props for the MapTooltip component. * @property {number} x - The x (horizontal) position for the tooltip (in pixels). * @property {number} y - The y (vertical) position for the tooltip (in pixels). * @property {Array} tooltipProperties - Array of tooltip attribute objects to display. */ export interface MapTooltipProps { x: number; y: number; tooltipProperties: TooltipAttribute[]; } /** * Memoized MapTooltip component displays a styled tooltip at a given position with provided properties. * * @param {MapTooltipProps} props - The props for the tooltip. * @returns {JSX.Element} Tooltip element positioned absolutely. */ export declare const MapTooltip: React.FC;