legacyUtil.d.ts
389 Bytes
import { CSSMotionProps } from 'rc-motion';
import { AnimationType, TransitionNameType } from '../interface';
interface GetMotionProps {
motion: CSSMotionProps;
animation: AnimationType;
transitionName: TransitionNameType;
prefixCls: string;
}
export declare function getMotion({ prefixCls, motion, animation, transitionName, }: GetMotionProps): CSSMotionProps;
export {};