import React from 'react'; import { FormatValue } from "../../types"; export declare type Item = { name?: string; value?: number | null; color?: string; }; declare type Props = { title?: string; items: readonly Item[]; formatValueForTooltip?: FormatValue; }; export declare const TooltipContentForMultipleValues: React.FC; export {};