import { MmUIComponent } from './component' /** Drawer component */ export declare class MmDrawer extends MmUIComponent { /** Can close Modal by pressing ESC */ escClosable: boolean /** Can close Modal by clicking on the mask layer */ maskClosable: boolean /** Show mask or not */ mask: boolean /** Drawer layer */ zIndex: number /** Whether the close button is displayed */ closable: boolean /** Drawer placement */ placement: string /** Drawer title */ title: string /** Drawer width */ width: number | string /** Drawer height */ height: number | string /** Transition ease function */ transition: string }