import { ExecutionService } from './execution.service'; import { EnterpriseExecutionsService } from './execution.service.ee'; import { ExecutionRequest } from './execution.types'; import { License } from '../license'; import { WorkflowSharingService } from '../workflows/workflow-sharing.service'; export declare class ExecutionsController { private readonly executionService; private readonly enterpriseExecutionService; private readonly workflowSharingService; private readonly license; constructor(executionService: ExecutionService, enterpriseExecutionService: EnterpriseExecutionsService, workflowSharingService: WorkflowSharingService, license: License); private getAccessibleWorkflowIds; getMany(req: ExecutionRequest.GetMany): Promise<{ concurrentExecutionsCount: number; results: import("n8n-workflow").ExecutionSummary[]; count: number; estimated: boolean; }>; getVersions(req: ExecutionRequest.GetVersions): Promise<{ versionId: string; name: string | null; createdAt: Date; }[]>; getOne(req: ExecutionRequest.GetOne): Promise; stop(req: ExecutionRequest.Stop): Promise; stopMany(req: ExecutionRequest.StopMany): Promise<{ stopped: number; }>; retry(req: ExecutionRequest.Retry): Promise>; delete(req: ExecutionRequest.Delete): Promise; update(req: ExecutionRequest.Update): Promise; }