import type { ExecutionRequest } from '../../../types'; import type { PublicAPIEndpoint } from '../../shared/handler.types'; type ExecutionHandlers = { deleteExecution: PublicAPIEndpoint; getExecution: PublicAPIEndpoint; getExecutions: PublicAPIEndpoint; retryExecution: PublicAPIEndpoint; getExecutionTags: PublicAPIEndpoint; updateExecutionTags: PublicAPIEndpoint; stopExecution: PublicAPIEndpoint; stopManyExecutions: PublicAPIEndpoint; }; declare const executionHandlers: ExecutionHandlers; export = executionHandlers;