import React, { CSSProperties } from 'react'; interface IConFontComponentProps { width?: number; height?: number; className?: string; iconMode: 'unicode' | 'svg'; style?: CSSProperties; type: string; onClick?: React.MouseEventHandler; } declare const Iconfont: { (props: IConFontComponentProps): JSX.Element; loadIconfont(iconfontVersion: string): void; }; export declare const loadStyle: (url: string | string[]) => void; export declare const loadScript: (url: string, callback?: () => {}) => Promise; export declare const getJS: (url: string) => Promise; export default Iconfont;