/** * 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 { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy, OnInit, TemplateRef } from '@angular/core'; import { Direction, Directionality } from '@angular/cdk/bidi'; import { Location } from '@angular/common'; import { VtsConfigKey, VtsConfigService } from '@ui-vts-kit/ng-vts/core/config'; import { VtsResizeObserver } from '@ui-vts-kit/ng-vts/cdk/resize-observer'; import { Subject } from 'rxjs'; import { VtsPageHeaderBreadcrumbDirective, VtsPageHeaderFooterDirective } from './page-header-cells'; import * as i0 from "@angular/core"; export declare class VtsPageHeaderComponent implements AfterViewInit, OnDestroy, OnInit { private location; vtsConfigService: VtsConfigService; private elementRef; private vtsResizeObserver; private cdr; private directionality; readonly _vtsModuleName: VtsConfigKey; vtsBackIcon: string | TemplateRef | null; vtsTitle?: string | TemplateRef; vtsSubtitle?: string | TemplateRef; vtsGhost: boolean; readonly vtsBack: EventEmitter; vtsPageHeaderFooter?: ElementRef; vtsPageHeaderBreadcrumb?: ElementRef; compact: boolean; destroy$: Subject; dir: Direction; constructor(location: Location, vtsConfigService: VtsConfigService, elementRef: ElementRef, vtsResizeObserver: VtsResizeObserver, cdr: ChangeDetectorRef, directionality: Directionality); ngOnInit(): void; ngAfterViewInit(): void; onBack(): void; ngOnDestroy(): void; getBackIcon(): string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }