import { BugReport } from './bug-report.interfaces'; export declare class BugReportService { private appName; private appVersion; constructor(appName: string, appVersion: string); applyDefaults(initData: BugReport): BugReport; createFromJsError(error: Error): BugReport; toText(report: BugReport): string; }