import React from 'react'; export interface IconFontType { className?: string; style?: React.CSSProperties; iconClass?: string; width?: number; height?: number; } declare const IconFont: React.FC; export default IconFont;