/// import { icons } from './icons.js'; export interface IconProps { name: keyof typeof icons.outline; type?: 'solid' | 'outline'; className?: string; customIcons?: typeof icons; } export declare function Icon({ customIcons, name, type, className }: IconProps): JSX.Element | null; export default Icon;