import { PrimaryKey } from '../common'; import { TaskRecord } from './task.entities'; export declare enum TaskState { OPEN = "OPEN" } export declare class TaskHelper { private static readonly mq; static create(identifier: string, uniqueId: string, type: string, service: string, channel: string, body: object): Promise; static invoke(id: PrimaryKey): Promise; static search(type: string, service: string, identifier: string): Promise; }