import * as React from 'react'; export interface JSX { type: keyof React.ReactSVG; props?: (React.ClassAttributes & React.SVGAttributes) | null; children: JSX[]; } declare function createIcon(jsx: JSX, componentName: string): React.ForwardRefExoticComponent>; export default createIcon;