/** * 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, NgZone, QueryList, TemplateRef } from '@angular/core'; import { NzCheckboxComponent } from 'ng-zorro-antd/checkbox'; import { TransferDirection, TransferItem } from './interface'; import * as i0 from "@angular/core"; export declare class NzTransferListComponent implements AfterViewInit { private ngZone; private cdr; direction: TransferDirection; titleText: string; showSelectAll: boolean; dataSource: TransferItem[]; itemUnit: string | undefined; itemsUnit: string | undefined; filter: string; disabled: boolean; showSearch?: boolean; searchPlaceholder?: string; notFoundContent?: string; filterOption?: (inputValue: string, item: TransferItem) => boolean; renderList: TemplateRef | null; render: TemplateRef | null; footer: TemplateRef | null; readonly handleSelectAll: EventEmitter; readonly handleSelect: EventEmitter; readonly filterChange: EventEmitter<{ direction: TransferDirection; value: string; }>; headerCheckbox?: NzCheckboxComponent; checkboxes: QueryList>; stat: { checkAll: boolean; checkHalf: boolean; checkCount: number; shownCount: number; }; get validData(): TransferItem[]; trackByHide(_index: number, item: TransferItem): boolean | undefined; onItemSelect: (item: TransferItem) => void; onItemSelectAll: (status: boolean) => void; private updateCheckStatus; handleFilter(value: string): void; handleClear(): void; private matchFilter; constructor(ngZone: NgZone, cdr: ChangeDetectorRef); markForCheck(): void; ngAfterViewInit(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }