import { HandlerContext, HandlerResult } from "@atomist/automation-client"; import { HandleCommand } from "@atomist/automation-client/lib/HandleCommand"; import { GoalSigningConfiguration } from "@atomist/sdm"; import { SdmGoalState } from "../../../typings/types"; /** * Update SDM goal. */ export declare class UpdateSdmGoalState implements HandleCommand { id: string; state: SdmGoalState; slackRequester: string; githubRequester: string; teamId: string; channel: string; gsc: GoalSigningConfiguration; handle(ctx: HandlerContext): Promise; }