import type { Command } from "commander"; export declare function addListCommand(command: Command): void; interface ListOptions { projectId?: string; gitlabUrl?: string; sourceBranch: string; } export declare function listAction(options: ListOptions): Promise; export {};