import { IntegrationExecutionResult, IntegrationInvocationConfig, IntegrationStateMachineEndEvent } from '../types'; /** * @param context AWS Lambda context, having the `awsRequestId` associated with * the invocation. In the case where an integration is implemented as * multiple steps, this will not be the same in constituent invocations. */ export default function executeIntegrationEnd(invocationConfig: IntegrationInvocationConfig, event: IntegrationStateMachineEndEvent, context: any): Promise;