import type { Command } from "commander"; type SubCliRegistrar = (program: Command) => Promise | void; type SubCliEntry = { name: string; description: string; register: SubCliRegistrar; }; export declare function getSubCliEntries(): SubCliEntry[]; export declare function registerSubCliByName(program: Command, name: string): Promise; export declare function registerSubCliCommands(program: Command, argv?: string[]): void; export {};