import { MatDialogRef } from '@angular/material/dialog'; import { BugReport, BugReportDialogConfig, BugReportDialogData } from '../bug-report.interfaces'; import { BugReportService } from '../bug-report.service'; export declare class BugReportDialogComponent { dialogRef: MatDialogRef; bugReportService: BugReportService; bugReport: BugReport; private targetService; private targetKey; config: BugReportDialogConfig; fullReportPanelOpen: boolean; targetName: string; isSending: boolean; constructor(dialogData: BugReportDialogData, dialogRef: MatDialogRef, bugReportService: BugReportService); submitIssue(): void; getReportAsText(): string; }