import { Injector, ElementRef, OnInit } from '@angular/core'; import { OBarMenuComponent } from './o-bar-menu.component'; import { OTranslateService } from '../../services'; export declare const DEFAULT_INPUTS_O_BAR_MENU_GROUP: string[]; export declare class OBarMenuGroupComponent implements OnInit { protected elRef: ElementRef; protected injector: Injector; static DEFAULT_INPUTS_O_BAR_MENU_GROUP: string[]; protected menu: OBarMenuComponent; protected translateService: OTranslateService; protected _groupTitle: string; protected _tooltip: string; protected _icon: string; protected _id: string; protected _isHovered: boolean; onMouseover: () => boolean; onMouseout: () => boolean; constructor(menu: OBarMenuComponent, elRef: ElementRef, injector: Injector); ngOnInit(): void; setDOMTitle(): void; groupTitle: string; tooltip: string; icon: string; id: string; isHovered: boolean; } export declare class OBarMenuGroupModule { }