import type { IconProps } from '@ant-design/compatible/lib/icon'; import React from 'react'; export interface MyIconEDProps extends IconProps { type?: string; isIconFont?: boolean; fontAddress?: string; svgContent?: string; rotate?: any; width?: number; height?: number; isUsePrimary?: boolean; iconFile?: any; $$reqPrefix?: string; } declare const IconED: React.FC; export default IconED;