import { MatDrawerToggleResult } from '@angular/material/sidenav'; import { MatSidenav } from '@angular/material/sidenav'; import { ILayoutTogglable } from './layout-toggle.class'; import * as i0 from "@angular/core"; export declare class VdLayoutComponent implements ILayoutTogglable { sidenav: MatSidenav; /** * mode?: 'side', 'push' or 'over' * * The mode or styling of the sidenav. * Defaults to "over". * See "MatSidenav" documentation for more info. * * https://github.com/angular/material2/tree/master/src/lib/sidenav */ mode: 'side' | 'push' | 'over'; /** * opened?: boolean * * Whether or not the sidenav is opened. Use this binding to open/close the sidenav. * Defaults to "false". * * See "MatSidenav" documentation for more info. * * https://github.com/angular/material2/tree/master/src/lib/sidenav */ opened: boolean; /** * sidenavWidth?: string * * Sets the "width" of the sidenav in either "px" or "%" * Defaults to "320px". * * https://github.com/angular/material2/tree/master/src/lib/sidenav */ sidenavWidth: string; /** * Checks if `ESC` should close the sidenav * Should only close it for `push` and `over` modes */ get disableClose(): boolean; /** * Proxy toggle method to access sidenav from outside (from vd-layout template). */ toggle(): Promise; /** * Proxy open method to access sidenav from outside (from vd-layout template). */ open(): Promise; /** * Proxy close method to access sidenav from outside (from vd-layout template). */ close(): Promise; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }