import React from 'react'; import type { ComponentProps } from 'react'; import StyledHeroIcon from './HeroIcon'; type AnimatedIconProps = ComponentProps; declare const AnimatedIcon: ({ style, ...otherProps }: AnimatedIconProps) => React.JSX.Element; export default AnimatedIcon;