/** * 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 { Direction, Directionality } from '@angular/cdk/bidi'; import { ElementRef, OnChanges, OnDestroy, OnInit, Renderer2, SimpleChanges } from '@angular/core'; import { NgControl } from '@angular/forms'; import { BooleanInput, VtsSizeXLMSType } from '@ui-vts-kit/ng-vts/core/types'; import { Subject } from 'rxjs'; import * as i0 from "@angular/core"; export declare class VtsInputDirective implements OnChanges, OnInit, OnDestroy { ngControl: NgControl; private directionality; static ngAcceptInputType_disabled: BooleanInput; static ngAcceptInputType_vtsBorderless: BooleanInput; vtsBorderless: boolean; vtsSize: VtsSizeXLMSType; get disabled(): boolean; set disabled(value: boolean); _disabled: boolean; disabled$: Subject; dir: Direction; filled: boolean; private destroy$; constructor(ngControl: NgControl, renderer: Renderer2, elementRef: ElementRef, directionality: Directionality); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; onKeyup(e: KeyboardEvent): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }