import { ErrorFactory } from '../common/errors'; export declare enum BugReportsErr { CREATE_BUG_REPORT_FAILED = "bug-reports/create-bug-report-failed", GET_BUG_REPORTS_FAILED = "bug-reports/get-bug-reports-failed", GET_BUG_REPORT_BY_ID_FAILED = "bug-reports/get-bug-report-by-id-failed" } export declare const errors: { "bug-reports/create-bug-report-failed": string; "bug-reports/get-bug-reports-failed": string; "bug-reports/get-bug-report-by-id-failed": string; }; export declare const errorFactory: ErrorFactory;