/**
 * ** Factory for Tasks identifiers.
 */
export declare const createTaskIdentifier: (task: string) => string;
/**
 * ** Extract Task from Tasks identifiers.
 */
export declare const extractTaskFromIdentifier: <T extends string = string>(taskIdentifier: string) => T;
