import React, { PropsWithChildren } from 'react'; /** @public */ export type LegendItemProps = { title: string; tooltipText?: string; markerColor?: string; }; /** @public */ export declare const LegendItem: (props: PropsWithChildren) => React.JSX.Element;