import { PropsWithChildrenAndClassName } from '../../types'; /** * **JSON-format type: legendEntry** * * Contains the `symbol` matching the legend in the containing `figure`'s `image`, and its corresponding `legendDescription`. * * Children: `[symbol legendDescription]` * * @param children * @param className * @param props * @constructor */ declare function LegendEntry({ children, className, ...props }: PropsWithChildrenAndClassName): import("react/jsx-runtime").JSX.Element; export { LegendEntry };