import * as React from 'react'; import { StyledComponent, StyledComponentProps } from '..'; import { ModalProps } from '../internal/Modal'; import { SlideProps } from '../transitions/Slide'; import { Theme } from '../styles/createMuiTheme'; export interface DrawerProps extends ModalProps { anchor?: 'left' | 'top' | 'right' | 'bottom'; elevation?: number; enterTransitionDuration?: number; leaveTransitionDuration?: number; open?: boolean; SlideProps?: SlideProps & StyledComponentProps; theme?: Theme; type: 'permanent' | 'persistent' | 'temporary'; } export default class Drawer extends StyledComponent {}