import { AnimationConfig, AnimationItem, LottiePlayer as AnimationPlayer } from "lottie-web";
import React from "react";
export interface LottieLoaderProps extends Omit<AnimationConfig, "container"> {
    animationData: any;
    className?: string;
    style?: React.HTMLAttributes<HTMLDivElement>["style"];
}
export type LottiePlayer = (AnimationPlayer & {
    animationItem?: AnimationItem;
}) | undefined;
declare const LottieLoader: React.ForwardRefExoticComponent<LottieLoaderProps & React.RefAttributes<LottiePlayer>>;
export default LottieLoader;
