import React from 'react';
import { LOCALE } from "../../../interfaces/types";
import { TooltipProps } from 'recharts';
export type BabyGrowthTooltipProps = {
    locale: LOCALE;
} & TooltipProps<string, string>;
export type LabelColorType = {
    name: Array<string>;
    color: string;
};
export declare const BabyGrowthTooltip: (props: BabyGrowthTooltipProps) => React.JSX.Element;
