type ReactSvgComponent = (props: { width?: string; height?: string; onClick?: () => void }) => JSX.Element; declare module '*.svg' { const content: { ReactComponent: ReactSvgComponent; }; export = content; }