/// import * as React from 'react'; export interface SrcProps { src?: string, normal?: string, retina?: string, srcset?: string } export interface ImageProps { className?: string; style?: React.CSSProperties; src: string | SrcProps } declare const Icon: (props: IconProps) => JSX.Element; export default Icon;