import { Command } from './elements/Command'; import { CommandPath } from './elements/CommandPath'; import { GetUsageFn } from './elements/GetUsageFn'; import { Handlers } from './Handlers'; import { RecommendCommandFn } from './elements/RecommendCommandFn'; declare const runCliRecursive: ({ command, argv, handlers, getUsage, recommendCommand, level, ancestorOptions, ancestorNames }: { command: Command; argv: string[]; handlers: Handlers; getUsage: GetUsageFn; recommendCommand: RecommendCommandFn; level: number; ancestorOptions: Record; ancestorNames: CommandPath; }) => Promise; export { runCliRecursive };