import { ChartStyle } from '../../types'; export interface KeyValueTooltipProps { entries: TooltipEntry[]; chartStyle?: ChartStyle; } declare function KeyValueTooltip({ entries, chartStyle }: KeyValueTooltipProps): import("react/jsx-runtime").JSX.Element; export interface TooltipEntry { key: string; value: string; } declare const _default: typeof KeyValueTooltip & { ChartStyle: typeof ChartStyle; }; export default _default;