import { AliasToken } from "../../theme/interface/alias.js"; import { TokenWithCommonCls } from "../../theme/internal.js"; import { CSSInterpolation, Keyframes } from "@antdv-next/cssinjs"; //#region src/style/motion/move.d.ts declare const moveDownIn: Keyframes; declare const moveDownOut: Keyframes; declare const moveLeftIn: Keyframes; declare const moveLeftOut: Keyframes; declare const moveRightIn: Keyframes; declare const moveRightOut: Keyframes; declare const moveUpIn: Keyframes; declare const moveUpOut: Keyframes; type MoveMotionTypes = 'move-up' | 'move-down' | 'move-left' | 'move-right'; declare function initMoveMotion(token: TokenWithCommonCls, motionName: MoveMotionTypes): CSSInterpolation; //#endregion export { initMoveMotion, moveDownIn, moveDownOut, moveLeftIn, moveLeftOut, moveRightIn, moveRightOut, moveUpIn, moveUpOut };