import { Style } from 'inlines'; import { Color } from '../../tokens/colors.js'; type LegendProps = { label: string; color: Color; onMouseEnter?: () => void; onMouseLeave?: () => void; style?: Style; }; declare function Legend({ label, color, onMouseEnter, onMouseLeave, style, }: LegendProps): import("react/jsx-runtime").JSX.Element; export { Legend }; export type { LegendProps };