import * as React from 'react'; import { TransitionProps } from '../../utils/transitions'; interface Props extends Omit { /** * A single child content element. */ children: React.ReactElement; /** * Direction the child node will enter from. */ direction?: 'left' | 'right' | 'up' | 'down'; /** * The duration for the transition, in milliseconds. * You may specify a single timeout for all transitions, or individually with an object. */ timeout?: number | { appear?: number; enter?: number; exit?: number; }; } /** * Slide in from the edge of the screen. * The `direction` property controls which edge of the screen the transition starts from. */ export declare const Slide: React.ForwardRefExoticComponent>; export {};