import { OnInit, ElementRef, AfterViewInit } from '@angular/core';
import { ModelService } from '../services/model.service';
import { MenuItem } from './meni-item.component';
import { Menu, MenuService } from './menu.service';
import { ControllerService } from '../services/controller.service';
import { HelperService } from '../services/helper.service';
import * as i0 from "@angular/core";
export declare class MenuComponent implements OnInit, AfterViewInit {
    model: ModelService;
    controller: ControllerService;
    helper: HelperService;
    menuService: MenuService;
    menu: Menu;
    menuEl: ElementRef;
    innerContent: ElementRef;
    style: string;
    overflow: string;
    constructor(model: ModelService, controller: ControllerService, helper: HelperService, menuService: MenuService);
    ngAfterViewInit(): void;
    ngOnInit(): void;
    getMenuClasses(): string;
    getInnerContentClasses(): string;
    onAnimationEnd(): void;
    menuClick(item: MenuItem): void;
    mouseup(): void;
    get zIndex(): 36 | 35 | 37;
    static ɵfac: i0.ɵɵFactoryDeclaration<MenuComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<MenuComponent, "sti-menu", never, { "menu": { "alias": "menu"; "required": false; }; }, {}, never, never, false, never>;
}
