/// import "./style.scss"; interface KapixLottiePlayerProps { src: string | null | undefined; loop?: boolean; autoplay?: boolean; preserveAspectRatio?: string; className?: string; deactivated?: boolean; } /** * A Lottie player component. It is less performant than the Kapix VUE player (play/pause, frames, etc are not considered) * @returns A Lottie Player for cute animations */ declare const KapixLottiePlayer: ({ className, src, deactivated, loop, autoplay, preserveAspectRatio }: KapixLottiePlayerProps) => JSX.Element; export default KapixLottiePlayer;