export declare class CLIService { private globalConfig; private flowFilePath; private flowTarget; private constructor(); private static pInstance; static get instance(): CLIService; static reset(): void; private static CORE_PLUGINS; run(): Promise; /** * Print summary * @param {ISummaryRecord[]} records */ private static printSummary; /** * Parse parameters passed via CLI */ private parseParameters; /** * Output help to stdout * @param options */ private printHelp; /** * Register plugins */ private registerPlugins; /** * Prepare context * @return {Promise} */ private prepareContext; /** * Convert key=value pairs into object * @param {string} kv key/value pair string * @param target * @param secret */ private convertKVPair; }