import React from 'react';
import { LOCALE } from "../../../interfaces/types";
export type Legend = {
    text: string;
    'z-score': string;
    color: string;
};
export type BabyGrowthLegendProps = {
    legends: Array<Legend>;
    locale: LOCALE;
};
export declare const BabyGrowthLegend: ({ legends, locale, }: BabyGrowthLegendProps) => React.JSX.Element;
