import { HandlerContext } from "@atomist/automation-client"; import * as types from "../typings/types"; /** * routeEvent * * This function is used to determine what type of inbound JIRA Issue event we have received, what data * should be included in the messages that are sent to the Chat platform, and what actions should be * available on those messages. * * @param {HandlerContext} ctx * @param {OnJiraIssueEvent.JiraIssue} event * @param {Boolean} newEvent Controls what the message options should be, update only or always-post */ export declare const routeEvent: (ctx: HandlerContext, event: types.OnJiraIssueEvent.JiraIssue, newEvent: boolean) => Promise;