/** * 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 { ChangeDetectorRef, OnChanges, OnDestroy, OnInit, SimpleChanges, TemplateRef } from '@angular/core'; import { VtsConfigKey, VtsConfigService } from '@ui-vts-kit/ng-vts/core/config'; import { BooleanInput, NumberInput, VtsSafeAny, VtsSizeXLMSType } from '@ui-vts-kit/ng-vts/core/types'; import * as i0 from "@angular/core"; export declare class VtsSpinComponent implements OnChanges, OnDestroy, OnInit { vtsConfigService: VtsConfigService; private cdr; private directionality; readonly _vtsModuleName: VtsConfigKey; static ngAcceptInputType_vtsDelay: NumberInput; static ngAcceptInputType_vtsSimple: BooleanInput; static ngAcceptInputType_vtsSpinning: BooleanInput; vtsIndicator: TemplateRef | null; vtsSize: VtsSizeXLMSType; vtsTip: string | null; vtsDelay: number; vtsSimple: boolean; vtsSpinning: boolean; private destroy$; private spinning$; private delay$; isLoading: boolean; dir: Direction; constructor(vtsConfigService: VtsConfigService, cdr: ChangeDetectorRef, directionality: Directionality); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }