import type { FC, CSSProperties } from 'react'; import './index.css'; import { FcrIconAnimationType } from './type'; export type FcrIconAnimationProps = { type: FcrIconAnimationType; style?: CSSProperties; className?: string; paused?: boolean; stop?: boolean; }; export declare const FcrIconAnimation: FC;