import * as React from "react"; type Props = { id: string; children: React.ReactNode | string; }; /** * If an element has an `aria-describedby` attribute, it needs to point to * a separate description element that contains the description for that * element. * * If the element is within an SVG, the description element must be a * `` within a `` in order for some browser/SR * combos to be able to access it. * * Use this SRDescInSVG component to create the * and styling for this description element. */ declare function SRDescInSVG(props: Props): React.JSX.Element; export default SRDescInSVG;