import type { Command } from "commander"; export declare function addCreateCommand(command: Command): void; interface CreateOptions { projectId?: string; gitlabUrl?: string; sourceBranch: string; targetBranch: string; title: string; } export declare function createAction(options: CreateOptions): Promise; export {};