/** * 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, VtsSafeAny } from '@ui-vts-kit/ng-vts/core/types'; import { Subject } from 'rxjs'; import { VtsOptionGroupComponent } from './option-group.component'; import * as i0 from "@angular/core"; export declare class VtsOptionComponent implements OnChanges, OnInit, OnDestroy { private vtsOptionGroupComponent; static ngAcceptInputType_vtsDisabled: BooleanInput; static ngAcceptInputType_vtsHide: BooleanInput; static ngAcceptInputType_vtsCustomContent: BooleanInput; private destroy$; changes: Subject; groupLabel: string | TemplateRef | null; template: TemplateRef; vtsLabel: string | null; vtsValue: VtsSafeAny | null; vtsDisabled: boolean; vtsHide: boolean; vtsCustomContent: boolean; constructor(vtsOptionGroupComponent: VtsOptionGroupComponent); ngOnInit(): void; ngOnChanges(): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }