import React from 'react'; import type { IconProps } from './interface'; interface CreateIconOptions { /** * If the has a single path, simply copy the path's `d` attribute */ paths: React.ReactNode; /** * Default props automatically passed to the component; overwriteable */ iconProps?: IconProps; viewBox?: string; fill?: string; } export declare function createIcon(options: CreateIconOptions): React.ForwardRefExoticComponent<{ size?: string | string[]; style?: React.CSSProperties; className?: string; spin?: boolean; } & Omit, keyof { size?: string | string[]; style?: React.CSSProperties; className?: string; spin?: boolean; }> & React.RefAttributes>; export {};