/** * 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 { AfterContentInit, OnChanges, OnDestroy, OnInit, SimpleChanges, TemplateRef } from '@angular/core'; import { Observable } from 'rxjs'; import { NzDirectionVHType, NzSafeAny, NzSizeLDSType } from 'ng-zorro-antd/core/types'; import { NzListGrid } from './interface'; import { NzListFooterComponent, NzListLoadMoreDirective, NzListPaginationComponent } from './list-cell'; import * as i0 from "@angular/core"; export declare class NzListComponent implements AfterContentInit, OnChanges, OnDestroy, OnInit { private directionality; nzDataSource?: NzSafeAny[]; nzBordered: boolean; nzGrid?: NzListGrid | '' | null | undefined; nzHeader?: string | TemplateRef; nzFooter?: string | TemplateRef; nzItemLayout: NzDirectionVHType; nzRenderItem: TemplateRef<{ $implicit: NzSafeAny; index: number; }> | null; nzLoading: boolean; nzLoadMore: TemplateRef | null; nzPagination?: TemplateRef; nzSize: NzSizeLDSType; nzSplit: boolean; nzNoResult?: string | TemplateRef; nzListFooterComponent: NzListFooterComponent; nzListPaginationComponent: NzListPaginationComponent; nzListLoadMoreDirective: NzListLoadMoreDirective; hasSomethingAfterLastItem: boolean; dir: Direction; private itemLayoutNotifySource; private destroy$; get itemLayoutNotify$(): Observable; constructor(directionality: Directionality); ngOnInit(): void; getSomethingAfterLastItem(): boolean; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; ngAfterContentInit(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; static ngAcceptInputType_nzBordered: unknown; static ngAcceptInputType_nzLoading: unknown; static ngAcceptInputType_nzSplit: unknown; }