/** * @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 { ElementRef, OnChanges, OnInit, TemplateRef } from '@angular/core'; import { NzSizeLDSType, NzUpdateHostClassService } from 'ng-zorro-antd/core'; import { NzListGrid } from './interface'; export declare class NzListComponent implements OnInit, OnChanges { private el; private updateHostClassService; nzDataSource: any[]; nzBordered: boolean; nzGrid: NzListGrid; nzHeader: string | TemplateRef; nzFooter: string | TemplateRef; nzItemLayout: 'vertical' | 'horizontal'; nzRenderItem: TemplateRef; nzLoading: boolean; nzLoadMore: TemplateRef; nzPagination: TemplateRef; nzSize: NzSizeLDSType; nzSplit: boolean; nzNoResult: string | TemplateRef; private prefixCls; private _setClassMap; constructor(el: ElementRef, updateHostClassService: NzUpdateHostClassService); ngOnInit(): void; ngOnChanges(): void; }