/// <reference types="node" />
export declare function createUniqueTaskType({ bpmnFilePath, taskTypes, messages, }: {
    bpmnFilePath: string;
    taskTypes: string[];
    messages: string[];
}): {
    bpmn: Buffer;
    taskTypes: {
        [key: string]: string;
    };
    messages: {
        [key: string]: string;
    };
    processId: string;
};
