import * as React from 'react'; export interface HorizontalSlidePropsType { appear?: boolean; in?: boolean; /** * 过渡效果的方向 */ direction: 'left' | 'right'; /** * 子节点 */ children: React.ReactNode; /** * 过渡时长。 */ timeout?: number | { enter: number; exit: number; }; /** * 指定过渡时应用的css类名。 */ transitionClasses?: string | { appear?: string; appearActive?: string; enter?: string; enterActive?: string; exit?: string; exitActive?: string; }; /** * 过渡效果的缓动函数 */ easing?: string | { enter: string; exit: string; }; } /** * 水平滑动效果。内部使用 * [react-transition-group/CSSTransition](https://reactcommunity.org/react-transition-group/#CSSTransition)实现过渡效果。 */ declare const HorizontalSlide: React.ComponentType; export default HorizontalSlide;