import { ScmIntegrationRegistry } from '@backstage/integration'; /** * Create a new action that creates a gitlab merge request. * * @public */ export declare const createPublishGitlabMergeRequestAction: (options: { integrations: ScmIntegrationRegistry; }) => import("@backstage/plugin-scaffolder-node").TemplateAction<{ repoUrl: string; title: string; description: string; branchName: string; targetBranchName?: string | undefined; sourcePath?: string | undefined; targetPath?: string | undefined; token?: string | undefined; commitAction?: "create" | "update" | "delete" | undefined; /** @deprecated projectID passed as query parameters in the repoUrl */ projectid?: string | undefined; removeSourceBranch?: boolean | undefined; assignee?: string | undefined; }, import("@backstage/types").JsonObject>;