import { HandlerContext, HandlerResult } from "@atomist/automation-client"; import { HandleCommand } from "@atomist/automation-client/lib/HandleCommand"; import { AddBotToSlackChannel } from "../../../typings/types"; export declare function addBotToSlackChannel(ctx: HandlerContext, teamId: string, channelId: string): Promise; export declare class AddBotToChannel implements HandleCommand { teamId: string; channelId: string; handle(ctx: HandlerContext): Promise; }