export declare const ANIMATION_CONTAINER_CLASSNAME = "k-animation-container";
export type KendoAnimationContainerProps = {
    positionMode?: "absolute" | "fixed";
    offset?: {
        top: number | string;
        left: number | string;
    };
    animationStyle?: React.CSSProperties;
};
export declare const AnimationContainer: {
    (props: KendoAnimationContainerProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
    states: any[];
    options: {};
    className: string;
    defaultOptions: {
        positionMode: string;
    };
};
export default AnimationContainer;
