import { ComponentType, SVGProps } from 'react'; import { AllIconNames } from './DynamicIcon/iconManifest'; export type IconName = AllIconNames; type IconComponent = ComponentType>; export declare const getIconComponent: (name: string) => IconComponent | null; export declare const useIconComponent: (name?: string) => IconComponent | null; export {};