import React from 'react'; import { IconName } from '../../types/IconTypes'; export type IconProps = { icon: IconName; className?: string; rotate?: 'left' | 'right' | number; fill?: string; width?: number; height?: number; onClick?: (e: React.MouseEvent) => void; onComplete?: (name: string, icon: React.FC> | undefined) => void; onError?: (err: Error) => void; }; declare const Icon: React.FC; export { Icon };