/** * @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, OnDestroy, OnInit, TemplateRef } from '@angular/core'; import { NzConfigService } from 'ng-zorro-antd/core/config'; import { NzCollapseComponent } from './collapse.component'; export declare class NzCollapsePanelComponent implements OnInit, OnDestroy { nzConfigService: NzConfigService; private cdr; private nzCollapseComponent; nzActive: boolean; nzDisabled: boolean; nzShowArrow: boolean; nzExtra: string | TemplateRef; nzHeader: string | TemplateRef; nzExpandedIcon: string | TemplateRef; readonly nzActiveChange: EventEmitter; private destroy$; clickHeader(): void; markForCheck(): void; constructor(nzConfigService: NzConfigService, cdr: ChangeDetectorRef, nzCollapseComponent: NzCollapseComponent); ngOnInit(): void; ngOnDestroy(): void; }