import { GenericState } from 'src/types/task-method.type'; import { WorkflowDefinition } from '../interfaces/workflow-definition.interface'; export declare function createWorkflowDocumentData(namespace: string, workflowName: string, workflowDefinition: WorkflowDefinition, scheduledAt: Date): { namespace: string; workflowName: string; scheduledAt: Date; status: "pending"; currentTask: T; nextTask: T; state: {}; executions: never[]; errorCount: number; workflowSnapshot: { tasks: import("..").TaskDefinition[]; firstTask: T; maxRetries: number; }; }; //# sourceMappingURL=workflow-document.util.d.ts.map