import { Command } from './elements/Command'; import { Handlers } from './Handlers'; declare const runCli: ({ rootCommand, argv, handlers }: { rootCommand: Command; argv: string[]; handlers?: Partial | undefined; }) => Promise; export { runCli };