import { CacheService } from './services/cache/cache.service'; export declare class ActivationErrorsService { private readonly cacheService; private readonly cacheKey; constructor(cacheService: CacheService); register(workflowId: string, errorMessage: string): Promise; deregister(workflowId: string): Promise; get(workflowId: string): Promise; getAll(): Promise>; clearAll(): Promise; }