import { Router } from '@angular/router'; import { DrawerBase, DrawerSettings, DrawerRefBase, DrawerParamsBase } from './drawer.base'; export declare class DrawerService { private _router; constructor(_router: Router); drawers: Array; private _current_index; private _zindex; private _content_zindex; private _backdrop_zindex; create(component: any, params?: any, settings?: DrawerSettings): Drawer; open(component: any, params?: any, settings?: DrawerSettings): Drawer; } export declare class Drawer extends DrawerBase { } export declare class DrawerRef extends DrawerRefBase { } export declare class DrawerParams extends DrawerParamsBase { }