import { JSX } from 'react'; export interface LegendProps { /** * Optional fixed width for the label section. Accepts a string (e.g., "100px", "10%") or a number (interpreted as pixels). */ labelWidth?: string | number; /** * The main label text or React node to be shown in the legend. */ label: React.ReactNode | string; /** * Optional icon to display alongside the label. */ icon?: React.ReactNode; /** * Descriptive text associated with the legend item. */ description: string; /** * Optional custom class name for styling the legend item. */ className?: string; } export declare const Legend: (props: LegendProps) => JSX.Element; export default Legend;