export declare class Drawer {
host: HTMLMaterialsDrawerElement;
/** Apply dismissible style on the drawer */
dismissible: boolean;
/** Set the drawer as a modal */
modal: boolean;
topAppBar: HTMLMaterialsTopAppBarElement;
private mdcDrawer;
items: HTMLMaterialsDrawerListItemElement[];
/**
* Open/close the drawer
*/
toggle(): Promise;
/** Open the drawer */
open(): Promise;
/** Close the drawer */
close(): Promise;
componentDidLoad(): Promise;
componentDidUpdate(): void;
private getDrawerClasses;
renderHtml(): Promise;
render(): any[];
}