/** * @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 { EventEmitter, OnChanges, SimpleChanges } from '@angular/core'; import { NzSafeAny } from 'ng-zorro-antd/core/types'; export declare class NzThSelectionComponent implements OnChanges { nzSelections: Array<{ text: string; onSelect(...args: NzSafeAny[]): NzSafeAny; }>; nzChecked: boolean; nzDisabled: boolean; nzIndeterminate: boolean; nzShowCheckbox: boolean; nzShowRowSelection: boolean; readonly nzCheckedChange: EventEmitter; readonly nzSortChangeWithKey: EventEmitter<{ key: string; value: import("../table.types").NzSortOrderType; }>; onCheckedChange(checked: boolean): void; ngOnChanges(changes: SimpleChanges): void; }