import { HandlerResult } from "@atomist/automation-client"; import { CommandHandlerRegistration, CommandListenerInvocation, SdmContext } from "@atomist/sdm"; import { JiraProjectComponentMap } from "../helpers/channelLookup"; import { Project } from "../jiraDefs"; declare class JiraGetCurrentChannelMappingsParams { slackChannelName: string; } export declare const findRequiredProjects: (components: JiraProjectComponentMap[], projectIds: string[]) => Promise; export declare const lookupJiraProjectDetails: (projectsToLookup: string[], ctx?: SdmContext) => Promise; export declare const prepareFriendlyComponentNames: (components: JiraProjectComponentMap[], projectDetails: Project[]) => Promise; export declare const prepareFriendProjectNames: (projects: Project[]) => Promise; export declare function getCurrentChannelMappings(ci: CommandListenerInvocation): Promise; export declare const getCurrentChannelMappingsReg: CommandHandlerRegistration; export {};