import { type CommandModule } from 'yargs'; export type SubCommand = { command: CommandModule; relatedName: string; }; export type CommandStructure = { topics: string[]; subCommands: SubCommand[]; }; export declare const findTopicsAndSubcommands: (commandName: string) => CommandStructure; //# sourceMappingURL=command-util.d.ts.map