import { HandlerContext, HandlerResult } from "@atomist/automation-client"; import { HandleCommand } from "@atomist/automation-client/lib/HandleCommand"; /** * Merge preference for the invoking user. */ export declare class SetTeamPreference implements HandleCommand { channelName: string; teamId: string; key: string; name: string; value: string; msgId: string; label: string; handle(ctx: HandlerContext): Promise; }