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