import React from 'react';
interface IconRendererProps {
    iconName: string;
    className?: string;
    icons?: Record<string, React.ComponentType<React.SVGProps<SVGSVGElement>>>;
}
export declare const IconRenderer: React.FC<IconRendererProps>;
export declare const getIconComponent: (iconName: string, icons?: Record<string, React.ComponentType<React.SVGProps<SVGSVGElement>>>) => React.ComponentType<React.SVGProps<SVGSVGElement>> | undefined;
export {};
