import { ComponentProps } from "react" export interface SymbolProps extends Omit, "ref"> { /** The symbol identifier in format 'collection#name' or 'path#name' */ symbol: string /** Optional title for accessibility */ title?: string /** Optional description for accessibility */ description?: string /** ARIA role, defaults to "img" */ role?: string /** Additional class names */ className?: string } export function Symbol(props: SymbolProps): JSX.Element