import React from "react";
declare global {
    namespace JSX {
        interface IntrinsicElements {
            "lottie-player": any;
        }
    }
}
interface LottiePlayerProps {
    animationData: any;
    background?: string;
    speed?: string;
    width?: string;
    height?: string;
    loop?: boolean;
    autoplay?: boolean;
    className?: string;
}
declare const LottiePlayer: React.FC<LottiePlayerProps>;
export default LottiePlayer;
