import type { OptionDefinition, PossibleOptionDefinition } from "../../types/command.d.ts"; /** * Removes boolean values from arguments to prevent commandLineArgs errors. * commandLineArgs throws an error if we pass a value for a boolean arg as follows: * myCommand -a=true --booleanArg=false --otherArg true * This function removes these booleans to avoid errors from commandLineArgs. */ declare const removeBooleanValues: >(arguments_: string[], options: PossibleOptionDefinition[], optionMapByName?: Map>, optionMapByAlias?: Map>) => string[]; export default removeBooleanValues;