import { View } from '@esui/core'; import '@material/mwc-drawer'; export declare const Drawer: ((...content: (View | undefined)[]) => import("@esui/core").Builder<{ content: View[]; title: string | View; subtitle: string | View; header: string | View; appContent?: View | undefined; hasHeader: boolean; open: import("@esui/core").WritableObservableValue; dismissable: boolean; modal: boolean; }>) & { View: import("@esui/core").Clazz<{ content: View[]; title: string | View; subtitle: string | View; header: string | View; appContent?: View | undefined; hasHeader: boolean; open: import("@esui/core").WritableObservableValue; dismissable: boolean; modal: boolean; } & View>; }; export declare function DrawerTitle(title: string | View): View | undefined; export declare function DrawerSubTitle(subtitle: string | View): View | undefined; export declare function DrawerHeader(header: string | View): View | undefined; export declare function AppContent(content: View): View;