import { ErrorFactory } from '../common/errors'; export declare enum OpinionErr { FETCH_FAILED = "opinion/fetch-failed", NOT_FOUND = "opinion/not-found", CREATE_OPINION_FAILED = "opinion/creation-failed", CREATE_OPINION_CLAIM_FAILED = "opinion/creation-claim-failed", UPDATE_OPINION_FAILED = "opinion/update-failed", FETCH_OPINION_AVERAGE_FAILED = "opinion/fetch-average-failed" } export declare const errors: { "opinion/fetch-failed": string; "opinion/not-found": string; "opinion/creation-failed": string; "opinion/creation-claim-failed": string; "opinion/update-failed": string; "opinion/fetch-average-failed": string; }; export declare const errorFactory: ErrorFactory;