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