import { KendoComponent } from '../_types/component';
export declare const ANIMATION_CONTAINER_CLASSNAME = "k-animation-container";
export type KendoAnimationContainerProps = {
    positionMode?: "absolute" | "fixed";
    shown?: boolean;
    offset?: {
        top: number | string;
        left: number | string;
    };
    animationStyle?: React.CSSProperties;
};
export declare const AnimationContainer: KendoComponent<KendoAnimationContainerProps & React.HTMLAttributes<HTMLDivElement>>;
export default AnimationContainer;
