import type { LegendItem } from './components/FloatingLegend.tsx';
export default function SVGLegend({ items, width, legendAreaWidth, }: {
    items: LegendItem[];
    width: number;
    legendAreaWidth?: number;
}): import("react/jsx-runtime").JSX.Element | null;
