/** * @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 { OnChanges, OnDestroy, OnInit, TemplateRef } from '@angular/core'; import { BooleanInput, NzSafeAny } from 'ng-zorro-antd/core/types'; import { Subject } from 'rxjs'; import { NzOptionGroupComponent } from './option-group.component'; export declare class NzOptionComponent implements OnChanges, OnInit, OnDestroy { private nzOptionGroupComponent; ngAcceptInputType_nzDisabled: BooleanInput; ngAcceptInputType_nzHide: BooleanInput; ngAcceptInputType_nzCustomContent: BooleanInput; private destroy$; changes: Subject<{}>; groupLabel: string | TemplateRef | null; template: TemplateRef; nzLabel: string | null; nzValue: NzSafeAny | null; nzDisabled: boolean; nzHide: boolean; nzCustomContent: boolean; constructor(nzOptionGroupComponent: NzOptionGroupComponent); ngOnInit(): void; ngOnChanges(): void; ngOnDestroy(): void; }