import { OnEvent } from "@atomist/automation-client"; import { EventHandlerRegistration, Goal } from "@atomist/sdm"; import * as types from "../typings/types"; /** * This event handler is used in conjunction with the JiraApproval goal. Given an issue created with the JiraApproval goal, this * handler searches the description of the issue for specific markers and provided they are there and the issue state is approved, * this event handler will set the approval goal to success. * * @param {Goal} goal */ export declare const onJiraIssueEventApprovalHandler: (goal: Goal) => OnEvent; export declare const onJiraIssueEventApproval: (goal: Goal) => EventHandlerRegistration;