import { GitLabApiClient } from "./gitlab-api-client"; import { NotifyParams, PluginLogger } from "reg-suit-interface"; export declare type Context = { noEmit: boolean; client: GitLabApiClient; logger: PluginLogger; notifyParams: NotifyParams; projectId: string; shortDescription?: boolean; }; export declare const COMMENT_MARK = ""; export declare const DESC_BODY_START_MARK = ""; export declare const DESC_BODY_END_MARK = ""; export declare function commentToMergeRequests({ noEmit, logger, client, notifyParams, projectId, shortDescription, }: Context): Promise; export declare function addDiscussionToMergeRequests({ noEmit, logger, client, notifyParams, projectId, shortDescription, }: Context): Promise; export declare function appendOrUpdateMergerequestsBody({ noEmit, logger, client, notifyParams, projectId, shortDescription, }: Context): Promise;