/** * 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, InjectionToken, NgZone, OnDestroy, OnInit } from '@angular/core'; import { VtsSafeAny } from '@ui-vts-kit/ng-vts/core/types'; import { VtsWaveRenderer } from './vts-wave-renderer'; import * as i0 from "@angular/core"; export interface VtsWaveConfig { disabled?: boolean; } export declare const VTS_WAVE_GLOBAL_DEFAULT_CONFIG: VtsWaveConfig; export declare const VTS_WAVE_GLOBAL_CONFIG: InjectionToken; export declare function VTS_WAVE_GLOBAL_CONFIG_FACTORY(): VtsWaveConfig; export declare class VtsWaveDirective implements OnInit, OnDestroy { private ngZone; private elementRef; private config; private animationType; private platformId; vtsWaveExtraNode: boolean; private waveRenderer?; private waveDisabled; get disabled(): boolean; get rendererRef(): VtsWaveRenderer | undefined; constructor(ngZone: NgZone, elementRef: ElementRef, config: VtsWaveConfig, animationType: string, platformId: VtsSafeAny); isConfigDisabled(): boolean; ngOnDestroy(): void; ngOnInit(): void; renderWaveIfEnabled(): void; disable(): void; enable(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }