import * as React from 'react';
import * as LucideIcons from 'lucide-react';
export { LucideIcon as LucideIconType } from 'lucide-react';

interface IconProps extends React.SVGProps<SVGSVGElement> {
    name: keyof typeof LucideIcons;
}
declare const Icon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;

export { Icon, type IconProps };
