UNPKG

428 BTypeScriptView Raw
1import * as React from 'react';
2import { Omit } from '@material-ui/types';
3import { Theme } from '../styles/createMuiTheme';
4import { TransitionProps } from '../transitions/transition';
5
6export interface GrowProps extends Omit<TransitionProps, 'timeout'> {
7 ref?: React.Ref<unknown>;
8 theme?: Theme;
9 timeout?: TransitionProps['timeout'] | 'auto';
10}
11
12declare const Grow: React.ComponentType<GrowProps>;
13
14export default Grow;