import React from 'react'; import { IconProps } from './type'; interface EthanFC extends React.FC { isEthanIcon?: boolean; } declare function createIcon(url?: string, fontFamily?: string, prefix?: string): EthanFC; export default createIcon; export declare const FontAwesome: EthanFC;