import { FC } from 'react'; import { FontAwesomeIconProps } from '@fortawesome/react-fontawesome'; declare const ThemePropsTuple: ["primary", "secondary", "success", "info", "warning", "danger", "light", "dark"]; type ThemeProps = typeof ThemePropsTuple[number]; interface IconProps extends FontAwesomeIconProps { theme?: ThemeProps; } declare const KIcon: FC; export { IconProps, KIcon as default };