import 'styled-components'; import { CSSObject, CSSProp } from 'styled-components'; import { ITheme } from './theme/types'; declare module '*.svg' { const content: React.FunctionComponent>; export default content; } declare module 'react' { interface Attributes { css?: CSSProp | CSSObject; } } declare module 'styled-components' { export interface DefaultTheme extends ITheme { } export type RuleSet = SimpleInterpolation; }