///
import { FlexboxProps } from '@lobehub/ui';
export interface LegendProps extends FlexboxProps {
activeLegend?: string;
categories: string[];
colors?: string[];
customCategories?: {
[key: string]: string;
};
enableLegendSlider?: boolean;
onClickLegendItem?: (category: string, color: string) => void;
}
declare const Legend: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;
export default Legend;