/**
 * 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 { ElementRef, EventEmitter, NgZone, OnChanges, OnInit, SimpleChanges } from '@angular/core';
import { NzDestroyService } from 'ng-zorro-antd/core/services';
import { BooleanInput } from 'ng-zorro-antd/core/types';
import { NzTreeNodeComponent } from './node';
import * as i0 from "@angular/core";
export declare class NzTreeNodeOptionComponent<T> implements OnChanges, OnInit {
    private ngZone;
    private host;
    private destroy$;
    private treeNode;
    static ngAcceptInputType_nzSelected: BooleanInput;
    static ngAcceptInputType_nzDisabled: BooleanInput;
    nzSelected: boolean;
    nzDisabled: boolean;
    readonly nzClick: EventEmitter<MouseEvent>;
    constructor(ngZone: NgZone, host: ElementRef<HTMLElement>, destroy$: NzDestroyService, treeNode: NzTreeNodeComponent<T>);
    get isExpanded(): boolean;
    ngOnChanges(changes: SimpleChanges): void;
    ngOnInit(): void;
    static ɵfac: i0.ɵɵFactoryDeclaration<NzTreeNodeOptionComponent<any>, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<NzTreeNodeOptionComponent<any>, "nz-tree-node-option", never, { "nzSelected": "nzSelected"; "nzDisabled": "nzDisabled"; }, { "nzClick": "nzClick"; }, never, ["*"], false, never>;
}
