import type { Command } from "commander"; export declare function addMergeCommand(command: Command): void; interface AcceptOptions { mergeRequestIid: string; projectId?: string; gitlabUrl?: string; } export declare function mergeAction(options: AcceptOptions): Promise; export {};