import { HandlerContext, HandlerResult } from "@atomist/automation-client"; import { HandleCommand } from "@atomist/automation-client/lib/HandleCommand"; export interface RepoProvider { name: string; owner: string; apiUrl: string; providerId: string; } export declare class LinkOwnerRepo implements HandleCommand { teamId: string; channelId: string; channelName: string; githubToken: string; repoProvider: string; msgId: string; msg: string; handle(ctx: HandlerContext): Promise; }