import { IntegrationJobKey } from '../types'; /** * Requests the creation of a registered integration job, used to track the execution of an integration invocation. * * @param event provides the minimal information for starting an integration job */ export default function (event: { integrationInstanceId: string; accountId: string; }): Promise;