import { default as React } from 'react'; import { PopoverContentProps } from '../../../../tedi'; export interface MapInfoProps { /** * Optional configuration for rendering info content inside a popover. */ popover?: PopoverContentProps; /** * The info content to display. Can be a single React node or an array of nodes. */ children: React.ReactNode | React.ReactNode[]; } export declare const MapInfo: (props: MapInfoProps) => JSX.Element; export default MapInfo;