import * as React from 'react'; import tsPropsType from './PropsType'; export default class Drawer extends React.Component { static propTypes: { children: React.Requireable; }; static defaultProps: { position: string; onOpenChange: () => void; drawerWidth: number; }; drawer: any; render(): JSX.Element; }