import { BasicAnimationControls } from "./types";
export interface AnimationData {
    activeTransforms: string[];
    activeAnimations: {
        [key: string]: BasicAnimationControls | undefined;
    };
}
export declare function getAnimationData(element: Element): AnimationData;
