import React from 'react'; declare type IconProps = { icon: string; className?: string; size: number; }; declare const Icon: React.MemoExoticComponent<(props: IconProps) => JSX.Element>; export default Icon;