import { ErrorFactory } from '../common/errors'; export declare enum CommunicationErr { FETCH_FAILED = "communication/fetch-failed", NOT_FOUND = "communication/not-found" } export declare const errors: { "communication/fetch-failed": string; "communication/not-found": string; }; export declare const errorFactory: ErrorFactory;