export interface AnimationConfig { type: string; duration?: number; delay?: number; } /** * 获取元素动画配置 * 优先 data-pptx-animation,其次 CSS animationName 映射 */ export declare function getElementAnimation(element: Element): AnimationConfig | undefined;