import { FC } from 'react'; import './lottie.component.scss'; export declare type LottiePropsType = { className?: string; speed?: number; loop?: boolean; autoplay?: boolean; start?: boolean; playFrom?: number; src?: string; animationData?: { [key: string]: any; }; }; export declare const Lottie: FC;