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