import { ObjectId } from 'mongodb'; import { IExecution, ExecutionState } from '../Interface'; export declare class Execution implements IExecution { _id: ObjectId; shortId: string; beforeInsert(): void; executionData: string; state: ExecutionState; workflowShortId: string; createdDate: Date; stoppedDate: Date; }