import { HandlerContext, HandlerResult } from "@atomist/automation-client"; import { HandleCommand } from "@atomist/automation-client/lib/HandleCommand"; import { CreateSlackChannel } from "../../../typings/types"; export declare function createChannel(ctx: HandlerContext, teamId: string, channelName: string): Promise; /** * Create a channel and link it to a repository. */ export declare class CreateChannel implements HandleCommand { teamId: string; owner: string; apiUrl: string; provider: string; userId: string; channel: string; repo: string; msgId: string; handle(ctx: HandlerContext): Promise; }