import { IntegrationStepExecutionResult, IntegrationStepInvocationContext } from '../types/step-functions'; /** * Executes a step of an integration process implemented using Step Functions. * * @param context the `IntegrationStepInvocationContext` carrying an * `IntegrationIntegrationStepInvocationEvent` having the `jobKey` created when * the state machine was started and the specific `stepConfig` to execute. */ export default function executeStepFunctionsStep(context: IntegrationStepInvocationContext): Promise;