import { type ElementType, type JSX, type SVGProps } from 'react'; type LucideIconProps = SVGProps & { title: string; iconPath: JSX.Element; }; export declare const LucideIcon: ({ title, iconPath }: LucideIconProps) => ElementType; export {};