import * as React from 'react'; import { Theme } from '../styles/createMuiTheme'; import { TransitionProps } from './transition'; export interface FadeProps extends TransitionProps { theme?: Theme; } declare const Fade: React.ComponentType; export default Fade;