import React from 'react';
export declare function createFromIconfont(scriptUrl: string): React.ForwardRefExoticComponent<{
    className?: string | undefined;
    style?: React.CSSProperties | undefined;
    size?: string | string[] | undefined;
    spin?: boolean | undefined;
} & Omit<React.SVGAttributes<SVGElement>, keyof {
    className?: string | undefined;
    style?: React.CSSProperties | undefined;
    size?: string | string[] | undefined;
    spin?: boolean | undefined;
}> & React.RefAttributes<SVGSVGElement>>;
