/// <reference types="react" />
import { PositionType } from "../../visualizations/typings/legend";
import { IGeoData, IPushpinCategoryLegendItem } from "../../../interfaces/GeoChart";
export interface IGeoChartLegendRendererProps {
    categoryItems?: IPushpinCategoryLegendItem[];
    format?: string;
    geoData?: IGeoData;
    height?: number;
    locale?: string;
    colorLegendValue: string;
    position?: PositionType;
    responsive?: boolean;
    showFluidLegend?: boolean;
    numericSymbols?: string[];
    onItemClick?: (item: IPushpinCategoryLegendItem) => void;
}
export default function GeoChartLegendRenderer(props: IGeoChartLegendRendererProps): JSX.Element;
