import React from "react"; interface LegendProps { children?: React.ReactNode; } declare const Legend: ({ children }: LegendProps) => JSX.Element; export default Legend;