import { PropsWithChildrenAndClassName } from '../../types'; /** * **JSON-format type: legendRoot** * * Sometimes, `image`s in `figure`s have legends in them. The `legendRoot` contains descriptions for each of those legends. * * Children: `[legendEntry+]` * * @param children * @param className * @param props * @constructor */ declare function LegendRoot({ children, className, ...props }: PropsWithChildrenAndClassName): import("react/jsx-runtime").JSX.Element; export { LegendRoot };