import * as yargs from 'yargs'; import { Options } from 'yargs'; import { YargsCommandObject } from './model'; export declare function setupYargs(commands: YargsCommandObject[], options: { [key: string]: Options; }): yargs.Argv<{}>; export declare function runCli(cliCfg: { commands: YargsCommandObject[]; options: { [key: string]: Options; }; }): void;