import React from 'react'; type Props = Omit, '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; export {};