/** * @author jasonHzq * @description 注册 pontx list 子命令 */ import type { Command } from "commander"; import type { CliContext } from "../cli-context.d.ts"; /** * 注册 list 子命令 * @param listCmd list 父命令对象 * @param ctx CLI 上下文 */ export declare function registerListCommands(listCmd: Command, ctx: CliContext): void;