import { EventEmitter } from '@angular/core'; import type { SideNavItem } from './side-nav.types'; export declare class SideNavComponent { /** * The items to display in the Side Nav. * * Should be updated when a user navigates. */ menuItems: SideNavItem[]; /** * An event that is emitted when the user selects an item of the Side Nav. * * The event will have the value of the SideNavItem that is clicked. */ itemSelected: EventEmitter; itemClickAction(item: SideNavItem): void; }