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<string, string>;
    addTransition?: string;
    delay?: number;
}
declare const Slide: React.FC<ISlide>;
export default Slide;
