/** * 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, ElementRef, EventEmitter, NgZone, OnDestroy, OnInit, TemplateRef } from '@angular/core'; import { NzConfigKey, NzConfigService } from 'ng-zorro-antd/core/config'; import { NzNoAnimationDirective } from 'ng-zorro-antd/core/no-animation'; import { NzDestroyService } from 'ng-zorro-antd/core/services'; import { BooleanInput } from 'ng-zorro-antd/core/types'; import { NzCollapseComponent } from './collapse.component'; import * as i0 from "@angular/core"; export declare class NzCollapsePanelComponent implements OnInit, OnDestroy { nzConfigService: NzConfigService; private ngZone; private cdr; private destroy$; private nzCollapseComponent; noAnimation?: NzNoAnimationDirective | undefined; readonly _nzModuleName: NzConfigKey; static ngAcceptInputType_nzActive: BooleanInput; static ngAcceptInputType_nzDisabled: BooleanInput; static ngAcceptInputType_nzShowArrow: BooleanInput; nzActive: boolean; nzDisabled: boolean; nzShowArrow: boolean; nzExtra?: string | TemplateRef; nzHeader?: string | TemplateRef; nzExpandedIcon?: string | TemplateRef; readonly nzActiveChange: EventEmitter; collapseHeader: ElementRef; markForCheck(): void; constructor(nzConfigService: NzConfigService, ngZone: NgZone, cdr: ChangeDetectorRef, destroy$: NzDestroyService, nzCollapseComponent: NzCollapseComponent, noAnimation?: NzNoAnimationDirective | undefined); ngOnInit(): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }