import { IconNode, LucideProps } from './types';
interface IconProps {
    name?: string;
    iconNode: IconNode;
}
declare const Icon: (props: LucideProps & IconProps) => import("solid-js").JSX.Element;
export default Icon;
