import * as React from 'react'; export interface IconProps { size?: string | number; color?: string; className?: string; onClick?: (e: React.MouseEvent) => void; } export interface IconRenderProps extends IconProps { children: (props: IconProps) => React.FunctionComponentElement; } declare const IconRender: React.FC; export default IconRender;