/** * 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, OnChanges, SimpleChanges, TemplateRef } from '@angular/core'; import { VtsSafeAny } from '@ui-vts-kit/ng-vts/core/types'; import { VtsSelectModeType } from './select.types'; import * as i0 from "@angular/core"; export declare class VtsOptionItemComponent implements OnChanges { private elementRef; selected: boolean; activated: boolean; grouped: boolean; customContent: boolean; template: TemplateRef | null; disabled: boolean; showState: boolean; label: string | null; value: VtsSafeAny | null; activatedValue: VtsSafeAny | null; listOfSelectedValue: VtsSafeAny[]; icon: TemplateRef | null; mode: VtsSelectModeType; vtsCustomCompareFn: (o1: VtsSafeAny, o2: VtsSafeAny) => boolean; readonly itemClick: EventEmitter; readonly itemHover: EventEmitter; constructor(elementRef: ElementRef); onHostMouseEnter(): void; onHostClick(): void; ngOnChanges(changes: SimpleChanges): void; innerCheckboxClick(_e: any): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }