import { InlineSvgProps } from './inline-svg.types'; /** * # InlineSvg * * Renders arbitrary SVG markup as an icon with built-in XSS protection. * The component sanitizes the provided SVG string to remove potentially * dangerous elements and attributes before rendering. * * @example * ```tsx * * ``` * * @see {@link https://nimbus-documentation.vercel.app/components/media/inline-svg} */ export declare const InlineSvg: { (props: InlineSvgProps): import("react/jsx-runtime").JSX.Element | null; displayName: string; };