/** * Default CSS definition for typescript, * will be overridden with file-specific definitions by rollup */ declare module '*.css' { const content: { [className: string]: string }; export default content; } type SvgrComponent = React.FunctionComponent< React.PropsWithChildren< React.PropsWithChildren> > >; declare module '*.svg' { const svgUrl: string; const svgComponent: SvgrComponent; export default svgComponent; }