import * as React from 'react'; import { StandardProps } from '..'; import { Theme } from '../styles/createMuiTheme'; import { TransitionProps } from './transition'; export interface CollapseProps extends StandardProps { children?: React.ReactNode; collapsedHeight?: string; component?: React.ReactType; theme?: Theme; timeout?: TransitionProps['timeout'] | 'auto'; } export type CollapseClassKey = 'container' | 'entered'; declare const Collapse: React.ComponentType; export default Collapse;