import { ChangeDetectorRef } from '@angular/core'; import { DrawerService } from '../service/drawer.service'; import { StateListener } from '../state-listener.component'; /** * [DrawerSubheader Component](https://pxblue-components.github.io/angular/?path=/info/components-drawer--readme) * * The `` is an optional section that renders below the header and above the body of the ``. * It can be used to support custom content (passed as children), such as filtering options or to display additional information. */ export declare class DrawerSubheaderComponent extends StateListener { /** Whether to show a dividing line below the SubHeader * * @default true * */ divider: boolean; /** Hide subheader content when drawer is collapsed * * @default true * */ hideContentOnCollapse: boolean; constructor(drawerService: DrawerService, changeDetectorRef: ChangeDetectorRef); }