import { SvgProps as DreiSvgProps } from '@react-three/drei'; import { FC } from 'react'; import { NodeRendererProps } from '../../types'; export type SvgProps = NodeRendererProps & Omit & { /** * The image to display on the icon. */ image: string; }; export declare const Svg: FC;