import { OnInit, ElementRef } from '@angular/core';
import { NgxNavService } from '../utils/nav.service';
import { NgxMaterialDrawerEventEmitter } from '../utils/mat-event-emitter.service';
import { NgxUtilsService } from '../utils/utils.service';
export declare class NgxTopNavComponent implements OnInit {
    matEventEmitterService: NgxMaterialDrawerEventEmitter;
    navService: NgxNavService;
    ngxUtilsService: NgxUtilsService;
    ngxSearchBox: ElementRef;
    config: any;
    isDrawerOpened: any;
    isSearchActive: boolean;
    searchValue: string;
    constructor(matEventEmitterService: NgxMaterialDrawerEventEmitter, navService: NgxNavService, ngxUtilsService: NgxUtilsService);
    ngOnInit(): void;
    ngAfterViewInit(): void;
    onItemSelected(item: any): void;
    toggleSearchBar(): void;
    onSearchValueChange(event: any): void;
    onSerachFocusIn(event: any): void;
    onSerachFocusOut(event: any): void;
}
