declare const getFormatToAttrs: (props: any, shape: any) => {}; declare const getFormatFromAttrs: (toAttrs: any, shape: any) => {}; /** * 执行动画,支持多种函数签名 * 1. animate(toAttrs: ElementAttrs, duration: number, easing?: string, callback?: () => void, delay?: number) * 2. animate(onFrame: OnFrame, duration: number, easing?: string, callback?: () => void, delay?: number) * 3. animate(toAttrs: ElementAttrs, cfg: AnimateCfg) * 4. animate(onFrame: OnFrame, cfg: AnimateCfg) * 各个参数的含义为: * toAttrs 动画最终状态 * onFrame 自定义帧动画函数 * duration 动画执行时间 * easing 动画缓动效果 * callback 动画执行后的回调 * delay 动画延迟时间 */ declare const processAnimate: (args: any, shape: any, callAnimate: any) => void; export { getFormatToAttrs, getFormatFromAttrs, processAnimate };