import { Attributes, Component } from 'jinge'; export interface DrawerContainerAttrs { active?: boolean; right?: boolean; pushMode?: boolean; } export declare class DrawerContainer extends Component { static template: string; active: boolean; mainMargin: number; right: boolean; _pushMode: boolean; constructor(attrs: Attributes); onUpdateActive(isActive: boolean): void; __afterRender(): void; }