import React from 'react';
import { IIcomoonConfig, IIconProps, IRenderIconProps } from './interfaces';
export declare function createIconSet(config: IIcomoonConfig, renderIcon?: (props: IRenderIconProps) => JSX.Element): React.FC<IIconProps & {
    children: string;
}>;
