import React from 'react';
type Props = Omit<React.SVGProps<SVGSVGElement>, 'width' | 'height'> & {
    bgStyle?: React.CSSProperties;
    borderRadius?: number;
    iconFillColor?: string;
    round?: boolean;
    size?: number | string;
};
type Config = {
    color: string;
    name: string;
    path: string;
};
export default function createIcon(config: Config): React.FC<Props>;
export {};
