/** * @license * Copyright Alibaba.com All Rights Reserved. * * 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 { AfterContentInit, ChangeDetectorRef, OnChanges, OnDestroy, QueryList, SimpleChanges, TemplateRef } from '@angular/core'; import { NzTimelineItemComponent } from './timeline-item.component'; declare const TimelineModes: readonly ["left", "alternate", "right"]; export declare type NzTimelineMode = typeof TimelineModes[number]; export declare class NzTimelineComponent implements AfterContentInit, OnChanges, OnDestroy { private cdr; listOfItems: QueryList; nzMode: NzTimelineMode; nzPending: string | boolean | TemplateRef; nzPendingDot: string | TemplateRef; nzReverse: boolean; isPendingBoolean: boolean; timelineItems: NzTimelineItemComponent[]; private destroy$; constructor(cdr: ChangeDetectorRef); ngOnChanges(changes: SimpleChanges): void; ngAfterContentInit(): void; ngOnDestroy(): void; private updateChildren; } export {};