import React from 'react'; import { StyledComponentClass } from 'styled-components'; import { ColorProp } from '../types'; import { SvgIconProps } from './SvgIcon'; import { Theme } from '../types'; export interface Props extends React.HTMLProps { children: React.ReactNode; className?: string; color?: ColorProp; } interface SVGIconComp extends StyledComponentClass & React.HTMLAttributes & Props, Theme, React.ClassAttributes & React.HTMLAttributes & SvgIconProps> { } declare const ThemedSvgIcon: SVGIconComp; export default ThemedSvgIcon;