import { ChangeDetectorRef, ElementRef } from '@angular/core'; import { DrawerService } from '../service/drawer.service'; import { StateListener } from '../state-listener.component'; /** * [DrawerHeader Component](https://pxblue-components.github.io/angular/?path=/info/components-drawer--readme) * * The `` contains the content found at the top of the ``. */ export declare class DrawerHeaderComponent extends StateListener { /** Mat toolbar color variant * * @default primary * */ color: 'primary' | 'accent' | 'warn' | undefined; /** Show a divider below footer * * @default false * */ divider: boolean; /** The text to show on the second line */ subtitle: string; /** The text to show on the first line */ title: string; iconEl: ElementRef; isEmpty: (el: ElementRef) => boolean; constructor(drawerService: DrawerService, changeDetectorRef: ChangeDetectorRef); isRail(): boolean; }