/** * 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, OnChanges, OnDestroy, OnInit, SimpleChanges, TemplateRef } from '@angular/core'; import { NzSafeAny } from 'ng-zorro-antd/core/types'; import { NzI18nService, NzTableI18nInterface } from 'ng-zorro-antd/i18n'; import { NzTableFilterList } from '../table.types'; import * as i0 from "@angular/core"; interface NzThItemInterface { text: string; value: NzSafeAny; checked: boolean; } export declare class NzTableFilterComponent implements OnChanges, OnDestroy, OnInit { private cdr; private i18n; contentTemplate: TemplateRef | null; customFilter: boolean; extraTemplate: TemplateRef | null; filterMultiple: boolean; listOfFilter: NzTableFilterList; readonly filterChange: EventEmitter; private destroy$; locale: NzTableI18nInterface; isChecked: boolean; isVisible: boolean; listOfParsedFilter: NzThItemInterface[]; listOfChecked: NzSafeAny[]; trackByValue(_: number, item: NzThItemInterface): NzSafeAny; check(filter: NzThItemInterface): void; confirm(): void; reset(): void; onVisibleChange(value: boolean): void; emitFilterData(): void; parseListOfFilter(listOfFilter: NzTableFilterList, reset?: boolean): NzThItemInterface[]; getCheckedStatus(listOfParsedFilter: NzThItemInterface[]): boolean; constructor(cdr: ChangeDetectorRef, i18n: NzI18nService); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export {};