import { ChangeDetectorRef } from '@angular/core'; import { DrawerService } from '../service/drawer.service'; import { StateListener } from '../state-listener.component'; /** * [DrawerFooter Component](https://pxblue-components.github.io/angular/?path=/info/components-drawer--readme) * * The `` is an optional section that renders at the bottom of the ``. * It can be used to add any custom content (as children). */ export declare class DrawerFooterComponent extends StateListener { /** Whether to show a dividing line above the Footer * * @default true * */ divider: boolean; /** Hide footer content when closed * * @default true * */ hideContentOnCollapse: boolean; constructor(drawerService: DrawerService, changeDetectorRef: ChangeDetectorRef); }