///
import { Component, HTMLProps } from 'react';
export interface Props extends HTMLProps<{}> {
open?: boolean;
title: string;
onClose: () => void;
}
export declare class Drawer extends Component {
private scrollbars;
static defaultProps: Partial;
render(): JSX.Element;
handleClose: () => void;
}