import * as React from 'react'; import IReactComponentProps from '../../../common/structures/IReactComponentProps'; interface IProps extends IReactComponentProps { align?: 'left' | 'center' | 'right'; children: React.ReactNode; show?: boolean; noStripes?: boolean; shadow?: boolean; } interface IState { disableAnimation: boolean; } export default class Drawer extends React.Component { static defaultProps: Partial; constructor(props: IProps); UNSAFE_componentWillReceiveProps(nextProps: IProps): void; render(): React.JSX.Element; } export {}; //# sourceMappingURL=Drawer.d.ts.map