import React from 'react'; import { ITransition } from '..'; export interface ISlide extends ITransition { root?: HTMLElement; min?: number; direction?: 'top' | 'left' | 'bottom' | 'right'; timing_function?: string | Record; addTransition?: string; delay?: number; } declare const Slide: React.FC; export default Slide;