import React from 'react'; import type { IconProps } from '../Icon'; type Props = { active?: boolean; } & IconProps; declare const AnimatedFABIcon: ({ active, ...iconProps }: Props) => React.JSX.Element; export { AnimatedFABIcon };