import { EventHandlerRegistration } from "@atomist/sdm"; import { NotifyReviewerOnPush } from "../../../typings/types"; /** * Event Handler that sends a DM to the reviewers of open and unmerged pull requests to notify them about new commits * on the pull request. * * Only reviewers of reviews that have had activity are being messaged; a review that is in requested state won't * trigger this notification. * * This DM can be disabled via the `@atomist configured dm` command. */ export declare function notifyReviewerOnPush(): EventHandlerRegistration;