import * as React from 'react'; import { TransitionProps } from '../../utils/transitions'; interface Props extends Omit { /** * A single child content element. */ children: React.ReactElement; /** * The duration for the transition, in milliseconds. * You may specify a single timeout for all transitions, or individually with an object. */ timeout?: 'auto' | number | { appear?: number; enter?: number; exit?: number; }; } export declare const Zoom: React.ForwardRefExoticComponent>; export {};