export interface LegendItem {
    color?: string;
    label: string;
}
declare const FloatingLegend: ({ items, }: {
    items: LegendItem[];
}) => import("react/jsx-runtime").JSX.Element | null;
export default FloatingLegend;
