import { OnInit } from '@angular/core'; import { TopnavLayoutConfig } from './_models/topnav-layout-config.model'; import { ActivatedRoute } from '@angular/router'; /** * The topnav layout container component */ export declare class TopnavLayoutComponent implements OnInit { private route; /** The topnav layout config object */ layoutConfig: TopnavLayoutConfig; /** Boolean indicating whether the component is initialized */ initialized: boolean; /** * @param route - The activated route */ constructor(route: ActivatedRoute); /** * Method called when the component is initialized */ ngOnInit(): void; }