import { EventEmitter } from '@angular/core'; import { CommonLibService } from './../common-lib.service'; export declare class SwipeLeftDirective { private commonLibService; appSwipeLeft: EventEmitter; constructor(commonLibService: CommonLibService); defaultTouch: { x: number; y: number; time: number; }; handleTouch(event: any): void; doSwipeLeft(event: any): void; doSwipeRight(event: any): void; doSwipeUp(event: any): void; doSwipeDown(event: any): void; }