1 | import type { CSSMotionProps } from 'rc-motion';
|
2 | import type { AnimationType, TransitionNameType } from '../interface';
|
3 | interface GetMotionProps {
|
4 | motion: CSSMotionProps;
|
5 | animation: AnimationType;
|
6 | transitionName: TransitionNameType;
|
7 | prefixCls: string;
|
8 | }
|
9 | export declare function getMotion({ prefixCls, motion, animation, transitionName, }: GetMotionProps): CSSMotionProps;
|
10 | export {};
|