import { CreatableFunctionComponent } from '@appbuckets/react-ui-core'; import { library } from '@fortawesome/fontawesome-svg-core'; import { IconProps } from './Icon.types'; declare type IconComponent = CreatableFunctionComponent & { addToLibrary: typeof library.add; }; declare const Icon: IconComponent; export default Icon;