import { HandlerContext, HandlerResult } from "@atomist/automation-client"; import { HandleCommand } from "@atomist/automation-client/lib/HandleCommand"; import { SdmGoalDisplayFormat, SdmGoalDisplayState } from "../../../typings/types"; /** * Update SDM goal set display status. */ export declare class UpdateSdmGoalDisplayState implements HandleCommand { sha: string; branch: string; state: SdmGoalDisplayState; format: SdmGoalDisplayFormat; name: string; owner: string; providerId: string; handle(ctx: HandlerContext): Promise; }