import React from "react"; import { ChartMetadata } from "../chart-types"; interface Props { chartUuid: string; chartMetadata: ChartMetadata; chartLibrary: string; colors: { [key: string]: string; }; hoveredRow: number; hoveredX: number | null; legendFormatValue: (value: number | string | null) => (number | string); onDimensionClick: (clickedDimensionName: string, event: React.MouseEvent) => void; selectedDimensions: string[]; showLatestOnBlur: boolean; unitsCurrent: string; viewBefore: number; } export declare const ChartLegendRight: ({ chartUuid, chartMetadata, chartLibrary, colors, hoveredRow, hoveredX, legendFormatValue, onDimensionClick, selectedDimensions, showLatestOnBlur, unitsCurrent, viewBefore, }: Props) => JSX.Element; export {};