import { default as React } from 'react'; import { 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; overridable */ iconProps?: IconProps; viewBox?: string; } export declare function createIcon(options: CreateIconOptions): React.ForwardRefExoticComponent<{ size?: string | string[]; style?: React.CSSProperties; className?: string; useStrokeCurrentColor?: boolean; useFillCurrentColor?: boolean; } & Omit, keyof { size?: string | string[]; style?: React.CSSProperties; className?: string; useStrokeCurrentColor?: boolean; useFillCurrentColor?: boolean; }> & React.RefAttributes>; export {};