import React from 'react'; import { ScatterChartValueFormatter } from "../types/charts"; export interface ScatterChartTooltipProps { active: boolean | undefined; axis: any; category?: string; categoryColors: Map; customCategories?: { [key: string]: string; }; label: string; payload: any; valueFormatter: ScatterChartValueFormatter; } declare const ScatterChartTooltip: React.NamedExoticComponent; export default ScatterChartTooltip;