export interface LegendItem {
    id: string;
    name: string;
    color: string;
}
export interface LegendProps {
    readonly items: LegendItem[];
}
export declare function Legend({ items }: LegendProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=Legend.d.ts.map