import { EventEmitter } from '@angular/core'; import { Subscription } from 'rxjs'; export declare class EmitterService { record: any; objectEmitter: EventEmitter; objectSubscription: Subscription; /** * * @param formAction String action name to emit * @param data Object data that you need to transfer */ setValue(formAction: string, data?: any): void; getValue(): any; }