import React from 'react'; import { IconProps } from './Icon'; interface CreateIconOptions { /** * The `svg` path or group element */ path: React.ReactElement | React.ReactElement[]; /** * The fill of the background rect element. Typically a color or url ID. */ rectFill?: string; } /** * Convenience function around the Icon component for making icons. */ export declare function createIcon(options: CreateIconOptions): React.ForwardRefExoticComponent>; export {};