/** * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { Direction, Directionality } from '@angular/cdk/bidi'; import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy, OnInit, TemplateRef } from '@angular/core'; import { Subject } from 'rxjs'; import { NzResizeObserver } from 'ng-zorro-antd/cdk/resize-observer'; import { NzConfigKey, NzConfigService } from 'ng-zorro-antd/core/config'; import { NzPageHeaderBreadcrumbDirective, NzPageHeaderFooterDirective } from './page-header-cells'; import * as i0 from "@angular/core"; export declare class NzPageHeaderComponent implements AfterViewInit, OnDestroy, OnInit { nzConfigService: NzConfigService; private elementRef; private nzResizeObserver; private cdr; private directionality; private location; readonly _nzModuleName: NzConfigKey; nzBackIcon: string | TemplateRef | null; nzTitle?: string | TemplateRef; nzSubtitle?: string | TemplateRef; nzGhost: boolean; readonly nzBack: EventEmitter; nzPageHeaderFooter?: ElementRef; nzPageHeaderBreadcrumb?: ElementRef; compact: boolean; destroy$: Subject; dir: Direction; enableBackButton: boolean; constructor(nzConfigService: NzConfigService, elementRef: ElementRef, nzResizeObserver: NzResizeObserver, cdr: ChangeDetectorRef, directionality: Directionality); ngOnInit(): void; ngAfterViewInit(): void; onBack(): void; ngOnDestroy(): void; getBackIcon(): string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }