/**
 * Copyright (c) 2018-2019 Aleksey Melnikov, True Directive Company.
 * @link https://truedirective.com/
 * @license MIT
*/
import { ElementRef } from '@angular/core';
import { MenuComponent } from './menu.component';
export declare class MenuShowDirective {
    private _elementRef;
    menu: MenuComponent;
    isMenuItem: boolean;
    click(e: any): void;
    closePopup(): void;
    itemMouseEnter(e: any): void;
    needClose(e: any): void;
    ngOnInit(): void;
    constructor(_elementRef: ElementRef);
}
