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