import { Hook } from '@oclif/core'; /** * Hook which will run if the invoke command was triggered. * Will display the difference of the remote and local node.js version * @param {*} opts - passed options from the oclif framework * @returns {Promise} - update version hint */ export declare function nodeVersion(opts: any, version?: string): Promise; /** * Runs the a hook every time the CLI gets initialised * @param { config } - oclif configuration */ declare const hook: Hook<'init'>; export default hook;