import { Type } from '@angular/core';
export interface ActionTools {
emitOutput(selector: string, name: string, $event?: any): void;
emitOutput(directive: Type<any>, name: string, $event?: any): void;
click(selector: string): void;
click(directive: Type<any>): void;
}