/** * @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 { ChangeDetectorRef, EventEmitter, TemplateRef } from '@angular/core'; import { TransferItem } from './interface'; export declare class NzTransferListComponent { private cdr; direction: string; titleText: string; showSelectAll: boolean; dataSource: TransferItem[]; itemUnit: string; itemsUnit: string; filter: string; disabled: boolean; showSearch: boolean; searchPlaceholder: string; notFoundContent: string; filterOption: (inputValue: string, item: TransferItem) => boolean; renderList: TemplateRef; render: TemplateRef; footer: TemplateRef; readonly handleSelectAll: EventEmitter; readonly handleSelect: EventEmitter; readonly filterChange: EventEmitter<{ direction: string; value: string; }>; stat: { checkAll: boolean; checkHalf: boolean; checkCount: number; shownCount: number; }; onItemSelect: (item: TransferItem) => void; onItemSelectAll: (status: boolean) => void; private updateCheckStatus; handleFilter(value: string): void; handleClear(): void; private matchFilter; constructor(cdr: ChangeDetectorRef); markForCheck(): void; }