declare type LegendProps = { aria?: { [key: string]: string; }; className?: string; color?: string; dark?: boolean; data?: object; id?: string; prefixText?: string; text: string; }; declare const Legend: (props: LegendProps) => JSX.Element; export default Legend;