import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core'; import { RmService } from '@bidi/common-services'; import { Store } from '@ngrx/store'; import { CommentsResourcesService } from './comments-resources.service'; export declare class CommentsResourcesComponent implements OnChanges { private rm; commentsService: CommentsResourcesService; private store; resourceId: any; role: any; title: any; close: EventEmitter<{}>; comment: string; private state$; constructor(rm: RmService, commentsService: CommentsResourcesService, store: Store); ngOnChanges(changes: SimpleChanges): void; saveComment(): void; }