import { ChangeDetectorRef } from '@angular/core'; import { DrawerNavItem } from '../nav-item/drawer-nav-item.component'; import { DrawerService } from '../../service/drawer.service'; import { StateListener } from '../../state-listener.component'; export declare type DrawerNavGroup = { divider?: boolean; title?: string; items: DrawerNavItem[]; }; /** * [DrawerNavGroup Component](https://pxblue-components.github.io/angular/?path=/info/components-drawer--readme) * * A `` is used inside of the `` to organize links and content. * Each group consists of an (optional) group title and a series of NavItems. */ export declare class DrawerNavGroupComponent extends StateListener implements Omit { /** Whether to show a dividing line below the title */ divider: boolean; /** Component to render a group title */ title: string; navItems: any; constructor(drawerService: DrawerService, changeDetectorRef: ChangeDetectorRef); ngAfterContentInit(): void; }