import { FontAwesomeIconProps } from '@fortawesome/react-fontawesome';
export type themeProps = 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'info' | 'light' | 'dark';
interface IconProps extends FontAwesomeIconProps {
    theme?: themeProps;
    className?: string;
}
declare const Icon: ({ icon, theme, className, ...restProps }: IconProps) => import("react/jsx-runtime").JSX.Element;
export default Icon;
