/** * @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, OnDestroy, QueryList, TemplateRef } from '@angular/core'; import { NzConfigService } from 'ng-zorro-antd/core/config'; import { NzSizeDSType } from 'ng-zorro-antd/core/types'; import { NzCardGridDirective } from './card-grid.directive'; import { NzCardTabComponent } from './card-tab.component'; export declare class NzCardComponent implements OnDestroy { nzConfigService: NzConfigService; private cdr; nzBordered: boolean; nzLoading: boolean; nzHoverable: boolean; nzBodyStyle: { [key: string]: string; }; nzCover: TemplateRef; nzActions: Array>; nzType: string | 'inner' | null; nzSize: NzSizeDSType; nzTitle: string | TemplateRef; nzExtra: string | TemplateRef; listOfNzCardTabComponent: NzCardTabComponent; listOfNzCardGridDirective: QueryList; private destroy$; constructor(nzConfigService: NzConfigService, cdr: ChangeDetectorRef); ngOnDestroy(): void; }