import { Attributes, Component } from 'jinge'; export interface DrawerAttrs { active?: boolean; fixed?: boolean; right?: boolean; _pushMode?: boolean; } export declare class Drawer extends Component { static template: string; active: boolean; fixed: boolean; right: boolean; _pushMode: boolean; constructor(attrs: Attributes); close(): void; }