import { createContext, ReactNode } from 'react'; export interface SVGDefsContextProps { addDef(id: string, node: ReactNode): void; removeDef(id: string): void; } const SVGDefsContext = createContext(undefined as any); export default SVGDefsContext;