import React from 'react';
import type { IconProps } from '../types';
export default function withIcon<P extends IconProps>(IconSvg: React.ComponentType<React.SVGProps<SVGSVGElement>>): React.ForwardRefExoticComponent<React.PropsWithoutRef<P> & React.RefAttributes<HTMLDivElement>> & {
    iconName: string;
};
