import { AliasToken } from "../../theme/interface/alias.js"; import { TokenWithCommonCls } from "../../theme/internal.js"; import { CSSInterpolation, Keyframes } from "@antdv-next/cssinjs"; //#region src/style/motion/slide.d.ts declare const slideUpIn: Keyframes; declare const slideUpOut: Keyframes; declare const slideDownIn: Keyframes; declare const slideDownOut: Keyframes; declare const slideLeftIn: Keyframes; declare const slideLeftOut: Keyframes; declare const slideRightIn: Keyframes; declare const slideRightOut: Keyframes; type SlideMotionTypes = 'slide-up' | 'slide-down' | 'slide-left' | 'slide-right'; declare function initSlideMotion(token: TokenWithCommonCls, motionName: SlideMotionTypes): CSSInterpolation; //#endregion export { initSlideMotion, slideDownIn, slideDownOut, slideLeftIn, slideLeftOut, slideRightIn, slideRightOut, slideUpIn, slideUpOut };