import { EventEmitter, OnInit, OnDestroy } from '@angular/core'; import { IShape } from '../interfaces/iShape'; export declare class ShapeClickDirective implements OnInit, OnDestroy { enabled: boolean; shapeClick: EventEmitter; shapeTripleClick: EventEmitter; constructor(); private isDestroying; private clicks$; ngOnInit(): void; ngOnDestroy(): void; click(event: any): void; }