import { AfterViewInit } from '@angular/core';
import { OnDestroyMixin } from '@w11k/ngx-componentdestroyed';
import { EventService } from '../core/event.service';
import { PresentationService } from '../core/presentation.service';
export declare class ContainerComponent extends OnDestroyMixin implements AfterViewInit {
    private readonly presentation;
    private readonly events;
    private sideNav;
    constructor(presentation: PresentationService, events: EventService);
    ngAfterViewInit(): void;
    onSideNavClose(opened: boolean): void;
    onKeyPressed(event: KeyboardEvent): void;
}
