import type { Option } from "yargs-interactive"; /** * Check current options and decide what to do. * If there is a missing property, run interactive mode * using the other properties as default values * @param commandOptions */ declare function getCommandOptions(commandOptions: Option): Option; export default getCommandOptions;