| 123456789101112131415 |
- import type { CSSInterpolation } from '../../_util/cssinjs';
- import { Keyframes } from '../../_util/cssinjs';
- import type { AliasToken } from '../../theme/internal';
- import type { TokenWithCommonCls } from '../../theme/util/genComponentStyleHook';
- export declare const slideUpIn: Keyframes;
- export declare const slideUpOut: Keyframes;
- export declare const slideDownIn: Keyframes;
- export declare const slideDownOut: Keyframes;
- export declare const slideLeftIn: Keyframes;
- export declare const slideLeftOut: Keyframes;
- export declare const slideRightIn: Keyframes;
- export declare const slideRightOut: Keyframes;
- type SlideMotionTypes = 'slide-up' | 'slide-down' | 'slide-left' | 'slide-right';
- export declare const initSlideMotion: (token: TokenWithCommonCls<AliasToken>, motionName: SlideMotionTypes) => CSSInterpolation;
- export {};
|