import * as yargs from 'yargs'; import { Options } from './options'; import { OptionsBinary } from './options_binary'; /** * Converts an options object into an options binary object. * @param options */ export declare function addOptionsBinary(options: Options): OptionsBinary; /** * For the clean and status commands ONLY. * Create the options with all providers. * @param argv */ export declare function convertArgs2AllOptions(argv: yargs.Arguments): Options; /** * For the update and start commands ONLY. * Create the options with providers depending on argv's. * @param argv */ export declare function convertArgs2Options(argv: yargs.Arguments): Options;