import { Command } from 'commander'; declare function registerCommands(cliInstance: Command, programName: string): void; declare function beforeParse(cliInstance: Command): void; declare function afterParse(cliInstance: Command): void; declare function runCli(programName: string): void; export { afterParse, beforeParse, registerCommands, runCli };